GET api/account/fishbox/{fishboxOrderID}/holiday/{id}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
fishboxOrderID | integer |
Required |
|
id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
FishboxHolidayName | Description | Type | Additional 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:08:29.8980522+00:00", "StartDate": "2025-05-11T13:08:29.8980522+00:00", "EndDate": "2025-05-11T13:08:29.8980522+00:00", "RestartOnEnd": true, "Notes": "sample string 7" }
application/xml, text/xml
Sample:
<FishboxHoliday xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/cag.Data.Subscription"> <CreatedDate>2025-05-11T13:08:29.8980522+00:00</CreatedDate> <EndDate>2025-05-11T13:08:29.8980522+00:00</EndDate> <FishboxOrderID>2</FishboxOrderID> <ID>1</ID> <Notes>sample string 7</Notes> <RestartOnEnd>true</RestartOnEnd> <StartDate>2025-05-11T13:08:29.8980522+00:00</StartDate> </FishboxHoliday>