Get a holiday

get

/services/rest/connect/v1.4/holidays/{id}

Request

Path Parameters
Back to Top

Response

Default Response

Body ()
Root Schema : holidays
Type: object
The list of holidays in your organization.
Show Source
Nested Schema : namedIDs-holidays-adminVisibleInterfaces
Type: object
The named ID that can be included in a list.
Show Source
  • Minimum Value: 1
    Maximum Value: 9223372036854776000
    The unique identifier of the object. This is the key for the list entry.
  • Maximum Length: 255
    The name used to look up the object.
Back to Top

Examples

Use GET with the following syntax to retrieve data for a holiday:

https://your_site_interface/services/rest/connect/version/holidays/holiday_id

Request URI example

https://mysite.example.com/services/rest/connect/v1.4/holidays/2

Response body example

{
  "id": 2,
  "lookupName": "Thanksgiving Day",
  "adminVisibleInterfaces": {
    "links": [
      {
        "rel": "self",
        "href": "https://mysite.example.com/services/rest/connect/v1.4/holidays/2/adminVisibleInterfaces"
      }
    ]
  },
  "displayOrder": 4,
  "holidayDate": "2016-11-24",
  "name": "Thanksgiving Day",
  "links": [
    {
      "rel": "self",
      "href": "https://mysite.example.com/services/rest/connect/v1.4/holidays/2"
    },
    {
      "rel": "canonical",
      "href": "https://mysite.example.com/services/rest/connect/v1.4/holidays/2"
    },
    {
      "rel": "describedby",
      "href": "https://mysite.example.com/services/rest/connect/v1.4/metadata-catalog/holidays",
      "mediaType": "application/schema+json"
    }
  ]
}
Back to Top