Internal Calling Line ID Delivery Services

Display user’s internal calling line id delivery

GET /api/v1/tenants/(string: tenant_id)/groups/(string: group_id)/users/(string: user_id)/services/internal_calling_line_id_delivery/

Retrieve the settings of the Internal Calling Line ID Delivery service of the user.

Example request:

GET /api/v1/tenants/foo/groups/foogroup/users/foouser/services/internal_calling_line_id_delivery/ HTTP/1.1
Host: example.com

Example response:

HTTP/1.1 200 OK
Content-Type: "application/json"

{
   "active": true
}
Response JSON Object:
  • active (boolean) – the status of the service.

Status Codes:

Update a user’s internal calling line id delivery

PUT /api/v1/tenants/(string: tenant_id)/groups/(string: group_id)/users/(string: user_id)/services/internal_calling_line_id_delivery/

Update the settings of the Internal Calling Line ID Delivery service of the user.

Example request:

PUT /api/v1/tenants/foo/groups/foogroup/users/foouser/services/internal_calling_line_id_delivery/ HTTP/1.1
Host: example.com
Content-Type: "application/json"

{
   "active": true
}
Request JSON Object:
  • active (boolean) – the status of the service.

Example response:

Response:

Similar to GET instance method response.

Status Codes: