ivrs
List all scenarios across all IVRs
Retrieves all scenarios across all IVRs in a single request. This is a convenience alternative to calling GET /ivrs/{ivrId}/scenarios for each IVR individually. Useful for building a global overview of all call flows configured in the team.
Permission: IVRs Read required.
Monitoring impact:
- OFF: Returns only scenarios from IVRs assigned to you.
- ON: Returns all scenarios across all team IVRs.
get/scenarios
Response
Successful operation
Example response
{
"list_count": 1,
"list": [
{
"scenario_id": 123456,
"ivr_id": 1234,
"name": "myscenario",
"color": "123456",
"scenario_type": "menu",
"is_default": true
}
]
}