GET api/account/customer/holiday/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

CustomerHoliday
NameDescriptionTypeAdditional information
ID

integer

None.

CustomerID

integer

None.

CreatedDate

date

None.

StartDate

date

None.

EndDate

date

None.

Notes

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "CustomerID": 2,
  "CreatedDate": "2025-05-11T10:06:54.8300435+00:00",
  "StartDate": "2025-05-11T10:06:54.8300435+00:00",
  "EndDate": "2025-05-11T10:06:54.8300435+00:00",
  "Notes": "sample string 6"
}

application/xml, text/xml

Sample:
<CustomerHoliday xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/cag.Data.Customers">
  <CreatedDate>2025-05-11T10:06:54.8300435+00:00</CreatedDate>
  <CustomerID>2</CustomerID>
  <EndDate>2025-05-11T10:06:54.8300435+00:00</EndDate>
  <ID>1</ID>
  <Notes>sample string 6</Notes>
  <StartDate>2025-05-11T10:06:54.8300435+00:00</StartDate>
</CustomerHoliday>