Partner Add Hotline To Tenant

This API allows Partners to assign hotlines to the tenant.

Note

  • Please use <api_key>the one eTelecom provided earlier. The base_url information of the Partner.

PartnerAddHotlineToTenant

post
Body
hotline_idstring · int64Optional
tenant_idstring · int64Optional
Responses
200
A successful response
application/json
post
POST /PartnerAddHotlineToTenant HTTP/1.1
Host: $BASE_URL.ETelecom
Content-Type: application/json
Accept: */*
Content-Length: 40

{
  "hotline_id": "text",
  "tenant_id": "text"
}
200

A successful response

{
  "updated": 1
}

Request:

curl --location 'BASE_URL.Etelecom/PartnerAddHotlineToTenant' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer $API_KEY' \
--data '{
  "hotline_id": "string",
  "tenant_id": "string"
}'

Response:

{
  "updated": 0
}

Structure of body request:

Parameters
Data type
Describe

hotline_id require

string

ID hotline

tenant_id

require

string

Call center ID

Last updated