Skip to main content
GET
/
holiday-schedules
List holiday schedules
curl --request GET \
  --url https://www.ruddr.io/api/workspace/holiday-schedules \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "id": "3b1c7f42-a8d5-4e29-b6f1-8c0e2d7a9b34",
      "name": "US Standard Holidays",
      "isActive": true,
      "createdAt": "2025-03-10T14:22:08.511Z",
      "holidays": [
        {
          "id": "9f4e2c81-d7b3-4a56-8e0f-1c5d3b7a6e29",
          "name": "Christmas Day"
        },
        {
          "id": "5a8d1f63-c2e4-4b97-9d0a-7f3e6c2b8a15",
          "name": "Labor Day"
        },
        {
          "id": "e7c4a9b2-f1d6-4e38-8b5c-0a2d4f9c3e71",
          "name": "New Year's Day"
        },
        {
          "id": "2d6b8f14-e3a7-4c50-9f1d-8b5e0c7a4d23",
          "name": "Thanksgiving Day"
        }
      ]
    }
  ],
  "hasMore": false
}
A named set of holidays that can be applied to workspace members. This allows different holiday observances per country or region.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

startingAfter
string

A cursor ID (uuid) used to request the next page of results. If not provided, defaults to the first page of results.

endingBefore
string

A cursor ID (uuid) used to request the previous page of results. Is mutually exclusive with startingAfter.

limit
integer<int32>

The maximum number of results to be returned. Can be any number from 1 to 100. Defaults to 10, if not provided.

name
string

Filter by name when it exactly matches the provided keyword.

isActive
boolean

Filter by active status. When true, returns only active holiday schedules. When false, returns only inactive ones.

Response

200

results
object[]
hasMore
boolean

Whether there are more results available after this page.