Get Voicemail
/inbox/vms/get
- token (required)
- inbox_id (int, required)
- message_id (int, required)
- raw (boolean)
Attempts to retrieve a given message from a given inbox.
{
"code": 200,
"status": "success",
"data": "Base64+encoded+string+of+the+voicemail+message"
}
If
raw
is true, then an audio/x-wav
file is returned with the following reply headers:Content-Type: audio/x-wav
Content-Disposition: attachment; filename="vm.wav"
{
"code": 400,
"status": "error",
"data": "Invalid inbox id"
}