List the holiday subscriptions for users in your workspace, including which categories they follow and any per-holiday overrides.
curl --request GET \
--url https://api.zeeg.me/v2/holidays/subscriptions \
--header 'Authorization: Bearer <token>'{
"collection": [
{
"uuid": 42,
"uri": "https://api.zeeg.me/v2/holidays/subscriptions/42",
"category": {
"type": "country",
"key": "DE",
"name": "Germany"
},
"holidays": [
{
"key": "new-year",
"name": "New Year's Day",
"date": "2026-01-01",
"nextDate": "2027-01-01",
"excluded": false
},
{
"key": "christmas-day",
"name": "Christmas Day",
"date": "2026-12-25",
"nextDate": "2027-12-25",
"excluded": true
}
],
"createdAt": "2026-04-01T09:12:33+00:00",
"updatedAt": "2026-04-15T08:00:00+00:00"
}
]
}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.
Email address of the user whose holiday subscriptions to retrieve.
"lena.meier@horizondigital.de"
OK
Holiday subscriptions for the user.
Hide child attributes
Subscription identifier.
Self-link to delete this subscription or toggle its overrides.
"https://api.zeeg.me/v2/holidays/subscriptions/42"
Cached holiday occurrences for this category, with each entry's current override state.
Hide child attributes
Stable holiday identifier (e.g. christmas-day). Note the field is key, not holiday_key.
True if this holiday is currently overridden off for the user.
Next future occurrence, when distinct from date.
curl --request GET \
--url https://api.zeeg.me/v2/holidays/subscriptions \
--header 'Authorization: Bearer <token>'{
"collection": [
{
"uuid": 42,
"uri": "https://api.zeeg.me/v2/holidays/subscriptions/42",
"category": {
"type": "country",
"key": "DE",
"name": "Germany"
},
"holidays": [
{
"key": "new-year",
"name": "New Year's Day",
"date": "2026-01-01",
"nextDate": "2027-01-01",
"excluded": false
},
{
"key": "christmas-day",
"name": "Christmas Day",
"date": "2026-12-25",
"nextDate": "2027-12-25",
"excluded": true
}
],
"createdAt": "2026-04-01T09:12:33+00:00",
"updatedAt": "2026-04-15T08:00:00+00:00"
}
]
}