v1
latestOpenAPI 3.1.02026-07-26359254.7 MBHoliday Calendars
Update a holiday calendar
<small>Requires the sequences:write scope (or a broader one that includes it).</small>
Updates an existing custom holiday calendar. Only custom calendars can be updated.
put/v3/holiday-calendars/{id}
Path parameters
idinteger required
Holiday calendar ID
Request body
Example request
{
"name": "Company Holidays 2026 (Updated)",
"repeatEveryYear": true,
"holidays": [
{
"startDate": "2026-07-04",
"endDate": "2026-07-04",
"name": "Independence Day"
}
]
}Response
Holiday calendar updated successfully
Example response
{
"id": 3,
"name": "US Holidays",
"calendarType": "custom",
"countryCode": "US",
"repeatEveryYear": true,
"holidays": [
{
"id": 100,
"startDate": "2026-12-25",
"endDate": "2026-12-25",
"name": "Christmas Day"
}
]
}