If I have a user's extensionId
, how can I get the user's call queue / department info, e.g. a specific team like "department": "Sales"
.
I know I can call the following endpoint and get a list of call queues / departments using the following, but I want a list specific to a user:
GET /restapi/v1.0/account/{accountId}/call-queues
GET /restapi/v1.0/account/{accountId}/extension?type=Department
Once I have the queue groupId, I can also get a list of members per queue:
GET /restapi/v1.0/account/{accountId}/call-queues/{groupId}/members
A user can be a member of multiple call queues. To get a list, call the user's extension info endpoint and look for the
departments
property in the JSON response body.Request:
Response:
The response will have a number of properties. The below is an excerpt that shows the
department
property.