Call Groups
GEThttps://api.voxo.co/huntlists/{recordId}
Get Call Group By Id
Retreive single call group 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": 41,
"tenantId": 432,
"name": "main",
"number": "4321",
"type": "SEQUENCE"
}
cURL
curl --location -g \
--request GET 'https://api.voxo.com/huntlists/1234' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {accessToken}'
GEThttps://api.voxo.co/huntlists?tenantId={tenantId}
Get All Call Groups
Retreive all call group by authorized tenants
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": 41,
"tenantId": 432,
"name": "main",
"number": "4321",
"type": "SEQUENCE"
}
]
cURL
curl --location -g \
--request GET 'https://api.voxo.com/huntlists/?tenantId=432' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {accessToken}'