POST api/account/fishbox/{fishboxOrderID}/holiday
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| fishboxOrderID | integer |
Required |
Body Parameters
FishboxHoliday| Name | 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. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"FishboxOrderID": 2,
"CreatedDate": "2025-12-14T04:11:52.7248861+00:00",
"StartDate": "2025-12-14T04:11:52.7248861+00:00",
"EndDate": "2025-12-14T04:11:52.7248861+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-12-14T04:11:52.7248861+00:00</CreatedDate> <EndDate>2025-12-14T04:11:52.7248861+00:00</EndDate> <FishboxOrderID>2</FishboxOrderID> <ID>1</ID> <Notes>sample string 7</Notes> <RestartOnEnd>true</RestartOnEnd> <StartDate>2025-12-14T04:11:52.7248861+00:00</StartDate> </FishboxHoliday>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.