Override individual holidays within a subscription — opt back in to specific dates without unsubscribing from the entire category.
curl --request PUT \
--url https://api.zeeg.me/v2/holidays/subscriptions/{id}/overrides \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"holidayKeys": [
"easter-monday",
"christmas-day"
]
}
'{
"success": true,
"status": 200,
"results": {
"easter-monday": true,
"christmas-day": false
}
}Documentation Index
Fetch the complete documentation index at: https://developer.zeeg.me/llms.txt
Use this file to discover all available pages before exploring further.
Subscription identifier.
x >= 142
Holiday keys (from the subscription's holidays[].key) to flip.
1100curl --request PUT \
--url https://api.zeeg.me/v2/holidays/subscriptions/{id}/overrides \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"holidayKeys": [
"easter-monday",
"christmas-day"
]
}
'{
"success": true,
"status": 200,
"results": {
"easter-monday": true,
"christmas-day": false
}
}