Retrieves the availability schedule for a specific staff member within a date range
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//staff//availability?start_date=undefined&end_date=undefined' \
--header 'Authorization: Bearer <token>'
Responses
Staff availability retrieved successfully
{
"today": "2019-08-24T14:15:22.123Z",
"appointment_catagory_id": 0,
"appointment_catagory_pri_name": "string",
"appointment_catagory_sec_name": "string",
"spot_duration_in_min": 0,
"days": [
{
"date": "2019-08-24T14:15:22.123Z",
"spots": [
"2019-08-24T14:15:22.123Z"
]
}
]
}
Modified at 2025-03-21 07:23:14