GET - Auto Attendants
Returns a complete list of all Auto Attendants in a single group.
Parameters
service_provider_id (str): Service Provider where Group is hosted.
group_id (str): Target Group where Auto Attendants are hosted.
Returns
List: List of Auto Attendants with basic info on them.
How To Use:
my_api.auto_attendants.get_auto_attendants(
service_provider_id="serviceProviderId",
group_id="groupId"
)
Example Returned Data (Formatted)
[
{
"serviceUserId": "testAA",
"name": "My Test AA",
"video": false,
"phoneNumber": 123456789,
"extension": "6060",
"department": "Department Name",
"isActive": true,
"type": "Basic"
},
{
"serviceUserId": "OtherAA",
"name": "Another AA",
"video": false,
"phoneNumber": null,
"extension": null,
"department": null,
"isActive": true,
"type": "Basic"
}
]
Last updated
Was this helpful?