Paging Groups
GEThttps://api.voxo.co/paging-groups/{recordId}
Get Paging Group By Id
Retrieve paging 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": 37,
"tenantId": 432,
"number": "3424",
"name": "test",
"twoWayAudio": "yes",
"meId": 0,
"checkInUse": "on",
"pin": 0,
"manualHeader": ""
}
cURL
curl --location -g \
--request GET 'https://api.voxo.com/paging-groups/1234' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {accessToken}'
GEThttps://api.voxo.co/paging-groups?tenantId={tenantId}
Get All Paging Groups
Retrieve the paging groups for authorized accountsHeader
Parameters
Query- Name
tenantId*
- Type
- Integer
- Description
12345
- Name
Authorization*
- Type
- String
- Description
Bearer
{AccessToken}
- Name
Content-Type*
- Type
- String
- Description
application/json
Response
[
{
"id": 37,
"tenantId": 432,
"number": "3424",
"name": "test",
"twoWayAudio": "yes",
"meId": 0,
"checkInUse": "on",
"pin": 0,
"manualHeader": ""
}
]
cURL
curl --location -g \
--request GET 'https://api.voxo.com/paging-groups?tenantId=432' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {accessToken}'