Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

holiday
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
holiday_date

date
db_country_code

string
name

string
is_custom

boolean
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Response Formats

application/json, text/json

Sample:
{
  "id": "b6d833ed-a335-41d3-881a-449e4f5637bc",
  "holiday_date": "2026-03-07T14:55:12.9511917+00:00",
  "db_country_code": "sample string 3",
  "name": "sample string 4",
  "is_custom": true,
  "modified_dateutc": "2026-03-07T14:55:12.9511917+00:00"
}

application/xml, text/xml

Sample:
<holiday xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <db_country_code>sample string 3</db_country_code>
  <holiday_date>2026-03-07T14:55:12.951Z</holiday_date>
  <id>b6d833ed-a335-41d3-881a-449e4f5637bc</id>
  <is_custom>true</is_custom>
  <modified_dateutc>2026-03-07T14:55:12.951Z</modified_dateutc>
  <name>sample string 4</name>
</holiday>