Skip to main content
GET
/
api
/
v1
/
users
/
calls
/
{username}
cURL
curl --request GET \
  --url https://api.myaifrontdeskdashboard.com/api/v1/users/calls/{username} \
  --header 'Authorization: Basic <encoded-value>'
{
  "success": true,
  "callLogs": [
    {
      "date": "5/7/2024, 12:42:20 AM",
      "forwardedFrom": "johndoe",
      "from": "+1xxxxxxxxxx",
      "to": "+1xxxxxxxxxx",
      "transcript": "assistant@ Welcome to Zeus Properties.  My name is Cortana.  How may I help you today?Where are you from?\n"
    }
  ]
}

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

callLogs
object[]