Virtual Receptionists
GEThttps://api.voxo.co/ivrs/{recordId}
Get IVR By Id
Retrieve IVR by IdHeader
Parameters
Path- Name
recordId*
- Type
- Integer
- Description
1234
- Name
Authorization*
- Type
- String
- Description
Bearer
{AccessToken}
- Name
Content-Type*
- Type
- String
- Description
application/json
Response
{
"id": 53,
"tenantId": 432,
"name": "main",
"allowDisa": "on"
}
cURL
curl --location -g \
--request GET 'https://api.voxo.com/ivrs/1234' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {accessToken}'
GEThttps://api.voxo.co/ivrs?tenantId={tenantId}
Get All IVRs
Retrieve IVRs for a specific accountHeader
Parameters
Query- Name
tenantId*
- Type
- Integer
- Description
1234
- Name
Authorization*
- Type
- String
- Description
Bearer
{AccessToken}
- Name
Content-Type*
- Type
- String
- Description
application/json
Response
[
{
"id": 53,
"tenantId": 432,
"name": "main",
"allowDisa": "on"
}
]
cURL
curl --location -g \
--request GET 'https://api.voxo.com/ivrs?tenantId=432' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {accessToken}'