Delete Voicemail Files
Delete voicemail files of a specific extension.
Endpoint
POST /api/v0.0.1/voicemail/delete?token={token}
Request Parameters
Name | Importance | Type | Description |
extid | Required | Int | Delete which extension’s voicemail file. |
voicemailfile | Required | String | The name of the voicemail file.
Enter a name of a voicemail file to delete the specific file. Set to all to delete all the voicemail files that are in specific voicemail status. |
Examples
Request Example
POST /api/v0.0.1/voicemail/delete?token=813b621cfe8eecf445a2ce1f4a079ffe HTTP/1.1
Content-Type:application/json; charset=utf-8
Host: 172.16.6.150
{
“extid”: “102”,
“voicemailfile”: “msg0000.wav”,
}
Response Example
HTTP/1.1 200 OK
Access-control-allow-origin: *
Access-control-allow-methods: GET, POST, OPTIONS, PUT, DELETE
{
“status”: “Success”
}