Skip to main content
PUT
/
holidays
/
subscriptions
/
{id}
/
overrides
Toggle holiday overrides
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
  }
}

Authorizations

Authorization
string
header
required

Path Parameters

id
integer<int64>
required

Subscription identifier.

Required range: x >= 1
Example:

42

Body

application/json
holidayKeys
string[]
required

Holiday keys (from the subscription's holidays[].key) to flip.

Minimum array length: 1
Maximum string length: 100

Response

Overrides toggled.

success
boolean
required
status
integer
required
Example:

200

results
object
required

Map of holiday key to its new excluded state (true = now excluded, false = override cleared).

Last modified on April 27, 2026