Search holiday by ID

Use case

In this example, we will find the holiday information by holidayId.

Use case data
API parameters with values

We will look for the holiday that was created before - ID-4505.

...api/v1/holidays/ID-4505

Sample API call

To search the holidays, make the following call.

https://holiday-api.sandbox.tuumplatform.com/ api/v1/holidays/{holidayId}

See more about the search holiday by ID endpoint in the Tuum developer portal.

Sample request

Below is the sample request to find account transactions.

No body

Sample response

Below you find an example response body to the API call above.

Response
{
    "errors": null,
    "validationErrors": null,
    "data": {
        "holidayId": "ID-4505",
        "holidayTypeCode": "BANKHOLIDAY",
        "countryCode": "DE",
        "date": "2027-12-23",
        "statusCode": "ACCEPTED",
        "holidayDeclineReason": null,
        "dependentUpdatesRequired": true
    }
}

Result

The search returned information about the holiday ID-4505.

Last updated

Was this helpful?