GET api/account/fishbox/{fishboxOrderID}/holiday

Request Information

URI Parameters

NameDescriptionTypeAdditional information
fishboxOrderID

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of FishboxHoliday
NameDescriptionTypeAdditional information
ID

integer

None.

FishboxOrderID

integer

None.

CreatedDate

date

None.

StartDate

date

None.

EndDate

date

None.

RestartOnEnd

boolean

None.

Notes

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "FishboxOrderID": 2,
    "CreatedDate": "2025-05-11T13:45:03.2095866+00:00",
    "StartDate": "2025-05-11T13:45:03.2095866+00:00",
    "EndDate": "2025-05-11T13:45:03.2095866+00:00",
    "RestartOnEnd": true,
    "Notes": "sample string 7"
  },
  {
    "ID": 1,
    "FishboxOrderID": 2,
    "CreatedDate": "2025-05-11T13:45:03.2095866+00:00",
    "StartDate": "2025-05-11T13:45:03.2095866+00:00",
    "EndDate": "2025-05-11T13:45:03.2095866+00:00",
    "RestartOnEnd": true,
    "Notes": "sample string 7"
  }
]

application/xml, text/xml

Sample:
<ArrayOfFishboxHoliday xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/cag.Data.Subscription">
  <FishboxHoliday>
    <CreatedDate>2025-05-11T13:45:03.2095866+00:00</CreatedDate>
    <EndDate>2025-05-11T13:45:03.2095866+00:00</EndDate>
    <FishboxOrderID>2</FishboxOrderID>
    <ID>1</ID>
    <Notes>sample string 7</Notes>
    <RestartOnEnd>true</RestartOnEnd>
    <StartDate>2025-05-11T13:45:03.2095866+00:00</StartDate>
  </FishboxHoliday>
  <FishboxHoliday>
    <CreatedDate>2025-05-11T13:45:03.2095866+00:00</CreatedDate>
    <EndDate>2025-05-11T13:45:03.2095866+00:00</EndDate>
    <FishboxOrderID>2</FishboxOrderID>
    <ID>1</ID>
    <Notes>sample string 7</Notes>
    <RestartOnEnd>true</RestartOnEnd>
    <StartDate>2025-05-11T13:45:03.2095866+00:00</StartDate>
  </FishboxHoliday>
</ArrayOfFishboxHoliday>