ivrs
Get an IVR by ID
Retrieves detailed information about a specific IVR by its identifier, including its configuration, assigned numbers, scenarios, welcome message settings, business hours, and queue parameters. Use GET /ivrs to discover available IVR IDs.
Permission: IVRs Read required.
Monitoring impact:
- OFF: Returns the IVR only if it is assigned to you. Returns 404 otherwise.
- ON: Returns any IVR in the team.
get/ivrs/{ivrId}
Path parameters
ivrIdinteger required
The unique identifier of the IVR. Use GET /ivrs to discover available IVR IDs.
Response
Successful operation — returns the IVR details.
Example response
{
"ivr_id": 123456,
"name": "StandardFacile",
"color": "ff6b6b",
"numbers": [
{
"number": 33184800000,
"label": "myfavoritenumber",
"type": "PHONE",
"user_id": 60907,
"ivr_id": 60908,
"conference_id": 60908,
"format": {
"raw": 184800000,
"country_code": "33",
"country": "FR",
"e164": "+33184800000",
"international": "+33 1 84 80 00 00",
"international_alt": "33184800000",
"national": "01 84 80 00 00",
"national_alt": "0184800000",
"rfc3966": "tel:+33-1-84-80-00-00"
}
}
],
"scenarios": [
{
"scenario_id": 123456,
"ivr_id": 1234,
"name": "myscenario",
"color": "123456",
"scenario_type": "menu",
"is_default": true
}
],
"is_open": true
}