Voicemails
GEThttps://api.voxo.co/voicemails/{recordId}
Get Voicemail By Id
Fetch voicemail 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": 5216,
"fullName": "Grablic",
"mailbox": "1234",
"password": "6209",
"email": "jut@tut.com"
}
cURL
curl --location -g \
--request GET 'https://api.voxo.com/voicemails/1234' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {accessToken}'
GEThttps://api.voxo.co/voicemails?tenantId={tenantId}
Get All Voicemails
Fetch voicemail for accounts and user.Header
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": 5216,
"fullName": "Grablic",
"mailbox": "1234",
"password": "6209",
"email": "jut@tut.com"
}
]
cURL
curl --location -g \
--request GET 'https://api.voxo.com/voicemails?tenantId=432' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {accessToken}'