Skip to main content
GET
/
api
/
v1
/
users
/
texts
/
{username}
cURL
curl --request GET \
  --url https://api.myaifrontdeskdashboard.com/api/v1/users/texts/{username} \
  --header 'Authorization: Basic <encoded-value>'
{
  "success": true,
  "textLogs": [
    {
      "date": "5/7/2024, 12:42:20 AM",
      "forwardedFrom": "johndoe",
      "text": "Great! I’ve just texted you a copy of the menu  \\n \\n \\n (No-Reply) Sent via myaifrontdesk.com",
      "to": "+1xxxxxxxxxx"
    }
  ]
}

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

textLogs
object[]