v1
latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MBHoliday calendar data
Get non-business days
Get non-business days (weekends and holidays) for a specific holiday calendar within a date range. Non-business days include weekends based on the holiday calendar's working days configuration and holidays associated with the group.
get/v1/holiday-calendar/{holiday_calendar_id}/non-business-days
Path parameters
holiday_calendar_idstring required
Example:8675309
Holiday calendar ID
Query parameters
begin_datestring required
Example:2025-01-01
Beginning date filter, format = yyyy-mm-dd
end_datestring required
Example:2025-01-30
End date filter, format = yyyy-mm-dd
Response
OK
Example response
{
"dates": [
{
"date": "2023-01-20",
"is_holiday": true,
"is_weekend": true
}
],
"holiday_calendar_metadata": "{ \"key\": \"value\"}"
}