Partner Removed Hotline From Tenant
This API allows Partners to remove hotlines from the tenant.
Body
hotline_idstring · int64Optional
owner_idstring · int64Optional
Responses
200
A successful response
application/json
post
POST /PartnerRemoveHotlineFromTenant HTTP/1.1
Host: $BASE_URL.ETelecom
Content-Type: application/json
Accept: */*
Content-Length: 39
{
"hotline_id": "text",
"owner_id": "text"
}
200
A successful response
{
"removed": 1
}
Request:
curl --location 'BASE_URL.Etelecom/PartnerRemoveHotlineFromTenant' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer $API_KEY' \
--data '{
"hotline_id": "string",
"owner_id": "string"
}'
Response:
{
"removed": 0
}
Structure of body request:
Parameters
Data type
Describe
hotline_id
require
string
ID hotline
owner_id
require
string
Manager ID
Last updated