Get Voicemail

/inbox/vms/get

Full Url

Arguments

  • token (required)
  • inbox_id (int, required)
  • message_id (int, required)
  • raw (boolean)

Info

Attempts to retrieve a given message from a given inbox.

Example Success

{
"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"

Example Error

{
"code": 400,
"status": "error",
"data": "Invalid inbox id"
}