Server URL
All the API endpoints are exposed underhttps://api.myaifrontdeskdashboard.com/api/v1/
Authentication
All the protected API endpoints useBasic authentication.
Here’s how you generate an authentication token:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
This section contains common information about using the APIs
https://api.myaifrontdeskdashboard.com/api/v1/
Basic authentication.
Here’s how you generate an authentication token:
btoa(`${username}:${password}`)
Buffer.from(`${username}:${password}`).toString('base64')
await axios.post(
`/your/protected/api/route`,
{
...body
},
{
headers: {
Authorization: btoa(`${username}:${password}`),
},
}
);
security:
- basicAuth: []
