cURL
curl -X PUT "https://api.fitsociety.io/public/v1/availability-closures" \
-H "Authorization: Bearer <access_token>" \
-H "Idempotency-Key: <stable_request_key>" \
-H "Content-Type: application/json" \
-d '{}'const options = {
method: 'PUT',
headers: {'Idempotency-Key': '<idempotency-key>', 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 = {
"Idempotency-Key": "<idempotency-key>",
"Authorization": "Bearer <token>"
}
response = requests.put(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
},
"idempotency": {
"replayed": true
}
}
}Availability closures
Replace closure days and absence
Requires availability_rules:write. Replaces the holiday preset and custom closure or absence date metadata used by the availability closures panel.
PUT
/
public
/
v1
/
availability-closures
cURL
curl -X PUT "https://api.fitsociety.io/public/v1/availability-closures" \
-H "Authorization: Bearer <access_token>" \
-H "Idempotency-Key: <stable_request_key>" \
-H "Content-Type: application/json" \
-d '{}'const options = {
method: 'PUT',
headers: {'Idempotency-Key': '<idempotency-key>', 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 = {
"Idempotency-Key": "<idempotency-key>",
"Authorization": "Bearer <token>"
}
response = requests.put(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
},
"idempotency": {
"replayed": true
}
}
}Authorizations
Public API access token issued by /public/v1/oauth/token. Example: Authorization: Bearer fspt_....
Headers
Required for Public API write requests. Reusing the same key with the same method, path, and body replays the stored successful response; reusing it with a different request returns 409 idempotency.conflict.
Required string length:
1 - 200Example:
"booking-create-20260714-001"
⌘I