Check staff availability for appointment category
Checks if a staff member is available for a specific appointment category at a given time
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Request Code Samples
curl --location 'https://api.ffdemo.ufp.ai/tenants//appointments//staff//check_availablity?start_date=undefined' \
--header 'Authorization: Bearer <token>'
Responses
Availability check completed successfully
{
"result": true,
"reason_of_unavailability": "string",
"unavailaibilty_data": [
{
"staff_id": 0,
"date": "2019-08-24T14:15:22.123Z",
"start_date": "2019-08-24T14:15:22.123Z",
"end_date": "2019-08-24T14:15:22.123Z",
"reason": "string"
}
]
}
Modified at 2025-03-21 07:23:14