latestOpenAPI 3.1.1Proprietary – Contact us for usage terms2026-08-20173183551.4 KB

9da73dd2f99e

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

list_countinteger

The size of the list

Example response

{
  "list_count": 1,
  "list": [
    {
      "scenario_id": 123456,
      "ivr_id": 1234,
      "name": "myscenario",
      "color": "123456",
      "scenario_type": "menu",
      "is_default": true
    }
  ]
}