Download a Voicemail Message
Download a specific vociemail message.
Steps to download a voicemail message
Request URL
GET {base_url}/{api_path}/vm/download?access_token={access_token}
Request parameters
| Parameter | Required | Type | Description |
|---|---|---|---|
| msg_id | Yes | String | The unique ID of voicemail message. Note: You can query the message ID using
Query Voicemail Messages of an Extension or a Group Voicemail. |
Response parameters
| Parameter | Type | Description |
|---|---|---|
| errcode | Integer | Returned error code.
Note: You can check the error code and
error message in Error Code and Error Message.
|
| errmsg | String | Returned message.
|
| file | String | The unique file name of the voicemail message. |
| download_resource_url | String | The download URL of the voicemail message. Note: The download URL is only valid for 30
minutes. |
Examples
Request example
Obtain the download URL of a voicemail message (ID: 1713033769-00000619).
GET /openapi/v1.0/vm/download?access_token=OhhwaZiSoRIJdeC34wQYH7hUjHcuKpf5&msg_id=1713033769-00000619 HTTP/1.1
Host: 192.168.5.150:8088
User-Agent: OpenAPI
Response example
HTTP/1.1 200 OK
{
"errcode": 0,
"errmsg": "SUCCESS",
"file": "PBX-Voicemail-x.15.0.x-download-20240423160019-3nHw52nGalosEJ62.wav",
"download_resource_url": "/api/download/PBX-Voicemail-x.15.0.x-download-20240423160019-3nHw52nGalosEJ62.wav"
}
Download the voicemail message
After obtaining the download URL for the voicemail message, combine it with the {base_url} and append the
{access_token} parameter. Then, use the complete link to
download the desired voicemail message.
Download link format
{base_url}/{download_resource_url}?access_token={access_token}
Download link example
https://192.168.5.150:8088/api/download/PBX-Voicemail-x.15.0.x-download-20240423160019-3nHw52nGalosEJ62.wav?access_token=MB1OklPar5hnDfhi4srZa8FrZ4znFSzr