Call Waiting Services

Display user’s call waiting

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

Retrieve the settings of the Call Waiting service of the user.

Example request:

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

Example response:

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

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

  • disableCallingLineIdDelivery (boolean) – Disable Calling Line ID Delivery on Call Waiting.

Status Codes:

Update a user’s call waiting

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

Update the settings of the Call Waiting service of the user.

Example request:

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

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

  • disableCallingLineIdDelivery (boolean) – Disable Calling Line ID Delivery on Call Waiting.

Example response:

Response:

Similar to GET instance method response.

Status Codes: