For the complete documentation index, see llms.txt. This page is also available as Markdown.

Remove Voicemail

Remove a specific voicemail (wav file)

GET or POST Request

https://v1.api19.com/voicemail/vm/remove

Remove a voicemail from a mailbox (delete wav file)

HTTP Post Variables Supported

Argument

Required

Type

mbox

yes

2-12 digits

msgid

yes

2-100 characters

key

yes

api key

curl https://v1.api19.com/voicemail/vm/remove \
 -d 'key=api_token' \
 -d 'mbox=2233' \
 -d 'msgid=msg0001'
curl "https://v1.api19.com/voicemail/vm/remove?key=api_token&mbox=2233&msgid=msg0001"
{"status":"ok","data":"base64encoded wav file"}
OR
{"status":"error","error":"no data found"}

Last updated