GET - Group Call Centers
Retrieves a list of active call centers within a specified group, along with their settings.
Parameters
service_provider_id (str): Service Provider where Group is hosted.
group_id (str): Target Group where Call Centers are hosted.
Returns
List: List of Call Centers and their settings.
How To Use:
my_api.call_centers.get_group_call_centers(
service_provider_id="serviceProviderId",
group_id="groupId"
)
Example Returned Data (Formatted)
[
{
"serviceUserId": "TestCallCenter1",
"name": "TestCallCenter1",
"video": false,
"phoneNumber": null,
"extension": null,
"department": null,
"isActive": true,
"policy": "Circular",
"type": "Premium"
},
{
"serviceUserId": "TestCallCenter2",
"name": "TestCallCenter2",
"video": false,
"phoneNumber": null,
"extension": null,
"department": null,
"isActive": true,
"policy": "Similtaneous",
"type": "Standard"
}
]
Last updated
Was this helpful?