Call queues

Retrieve the call queues which current user belongs

get

Retrieve the call queues which current user belongs.

Authorizations
Responses
curl -L \
  --url 'https://HOSTNAME:8887/api/user/call_queues' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "items": [
    {
      "id": "NzAwNTUxOTA5NzczMTQ4MTYw",
      "name": "text",
      "extension_number": "text"
    }
  ]
}

Was this helpful?