Feature Codes
GETundefined/features/{recordId} baseUrl=
Get Feature Code By Id
Retrieve Extension 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": 47,
"tenantId": 432,
"code": "*999",
"comment": "Play test audio"
}
cURL
curl --location -g \
--request GET 'https://api.voxo.com/features/1234' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {accessToken}'
GEThttps://api.voxo.co/features?tenantId={tenantId}
Get All Feature Codes
Retrieve feature codes for 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": 47,
"tenantId": 432,
"code": "*999",
"comment": "Play test audio"
}
]
cURL
curl --location -g \
--request GET 'https://api.voxo.com/features?tenantId=432' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {accessToken}'