GET V3/odata/PublicHoliday({key})
Gets PublicHoliday entity by key
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| key |
PublicHolidayId from PublicHoliday entity |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
QicsUnity.Api.Areas.V3.Models.PublicHoliday| Name | Description | Type | Additional information |
|---|---|---|---|
| PublicHolidayId |
Gets or sets the PublicHolidayId |
integer |
Required 64-bit signed integer |
| CountryCode |
Gets or sets the CountryCode |
string |
Required |
| Date |
Gets or sets the Date |
date |
Required date and time of day |
| Name |
Gets or sets the Name |
string |
Required |
| RegionCode |
Gets or sets the RegionCode |
string |
Response Formats
application/json, text/json, application/scim+json
Sample:
{
"PublicHolidayId": "1",
"CountryCode": "sample 2",
"Date": "2026-09-19T16:02:32.3408614+00:00",
"Name": "sample 4",
"RegionCode": "sample 5"
}
application/xml, text/xml
Sample:
<PublicHoliday xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QicsUnity.Api.Areas.V3.Models"> <CountryCode>sample 2</CountryCode> <Date>2026-09-19T16:02:32.3408614+00:00</Date> <Name>sample 4</Name> <PublicHolidayId>1</PublicHolidayId> <RegionCode>sample 5</RegionCode> </PublicHoliday>