This API allows you to create a custom availability for a specific team member within a scheduling link context. The created availability will be associated with the team member for this specific meeting.
{your-workspace} with your workspace’s subdomain. X-Api-Key is used to authenticate requests using an API key. Provide your API key in this header to access protected endpoints. Refer to Authentication for more information.
The unique SID of the scheduling link. You can get sid in different ways. Visit the scheduling link page and then click on "Settings" > "Show SID". That will give you sid. The other way you can get sid is by listing scheduling links using our List all scheduling links API. Here you will see sid for each scheduling link.
Email of the team member who is a member of this scheduling link.
Name for the custom availability.
"Meeting Specific Availability"
[
{
"wday": "monday",
"start_time": "09:00 AM",
"end_time": "05:00 PM"
},
{
"wday": "friday",
"start_time": "10:00 AM",
"end_time": "04:00 PM"
}
]Set an override for specific days. To set a date as unavailable, pass a blank array to the periods property. You can remove existing overrides by omitting the periods property.
[
{
"date": "2025-03-07",
"periods": [
{
"wday": "friday",
"start_time": "11:00 AM",
"end_time": "04:00 PM"
}
]
}
]