Skip to main content
GET
/
api
/
v1
/
users
/
voicemails
/
{username}
cURL
curl --request GET \
  --url https://api.myaifrontdeskdashboard.com/api/v1/users/voicemails/{username} \
  --header 'Authorization: Basic <encoded-value>'
{
  "success": true,
  "voicemails": [
    {
      "date": "5/7/2024, 12:42:20 AM",
      "forwardedFrom": "johndoe",
      "from": "+1xxxxxxxxxx",
      "voicemail_transcript": "Hey, Sally. It's Rich here. I just wanted to give you my phone number. It's, four zero eight"
    }
  ]
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

username
string
required

username of the receptionist

Example:

"johndoe"

Response

success

success
boolean
Example:

true

voicemails
object[]