cURL
curl -X GET "https://api.fitsociety.io/public/v1/availability-closures" \
-H "Authorization: Bearer <access_token>"const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.fitsociety.io/public/v1/availability-closures', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.fitsociety.io/public/v1/availability-closures"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": {
"availabilityClosures": {
"presets": [
{
"key": "<string>",
"enabled": true,
"appliesToCoaches": true,
"appliesToLocations": true,
"holidayKeys": [
"<string>"
],
"coachIds": [
"<string>"
],
"locationIds": [
"<string>"
]
}
],
"customClosures": [
{
"key": "<string>",
"name": "<string>",
"date": "<string>",
"recurring": true,
"enabled": true,
"reason": "<string>",
"appliesToCoaches": true,
"appliesToLocations": true,
"locationIds": [
"<string>"
],
"coachIds": [
"<string>"
]
}
],
"availablePresets": [
{
"key": "<string>",
"countryCode": "<string>",
"regionCode": "<string>",
"label": {
"en": "<string>",
"nl": "<string>"
},
"holidays": [
{
"key": "<string>",
"label": {
"en": "<string>",
"nl": "<string>"
},
"defaultEnabled": true
}
]
}
],
"updatedAt": "2023-11-07T05:31:56Z"
}
},
"meta": {
"requestId": "4f849d7d-f4f1-45cc-b4b7-3984a3d17f83",
"rateLimit": {
"limit": 10,
"remaining": 9,
"resetSeconds": 1,
"retryAfterSeconds": 1
}
}
}Availability closures
List closure days and absence
Requires availability_rules:read. Returns the calendar settings closure-day document used by the availability closures panel: holiday presets and custom closure or absence dates that block bookable availability for coaches, locations, or both. Company IDs and raw scheduling internals are omitted.
GET
/
public
/
v1
/
availability-closures
cURL
curl -X GET "https://api.fitsociety.io/public/v1/availability-closures" \
-H "Authorization: Bearer <access_token>"const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.fitsociety.io/public/v1/availability-closures', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.fitsociety.io/public/v1/availability-closures"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": {
"availabilityClosures": {
"presets": [
{
"key": "<string>",
"enabled": true,
"appliesToCoaches": true,
"appliesToLocations": true,
"holidayKeys": [
"<string>"
],
"coachIds": [
"<string>"
],
"locationIds": [
"<string>"
]
}
],
"customClosures": [
{
"key": "<string>",
"name": "<string>",
"date": "<string>",
"recurring": true,
"enabled": true,
"reason": "<string>",
"appliesToCoaches": true,
"appliesToLocations": true,
"locationIds": [
"<string>"
],
"coachIds": [
"<string>"
]
}
],
"availablePresets": [
{
"key": "<string>",
"countryCode": "<string>",
"regionCode": "<string>",
"label": {
"en": "<string>",
"nl": "<string>"
},
"holidays": [
{
"key": "<string>",
"label": {
"en": "<string>",
"nl": "<string>"
},
"defaultEnabled": true
}
]
}
],
"updatedAt": "2023-11-07T05:31:56Z"
}
},
"meta": {
"requestId": "4f849d7d-f4f1-45cc-b4b7-3984a3d17f83",
"rateLimit": {
"limit": 10,
"remaining": 9,
"resetSeconds": 1,
"retryAfterSeconds": 1
}
}
}⌘I