PUT api/Admin/Catering/Order/{orderId}/ProductsOther/{productOtherOrderId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| orderId | integer |
Required |
|
| productOtherOrderId | integer |
Required |
Body Parameters
CateringOrderProductOtherPutDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Name | string |
None. |
|
| NumberOfItems | integer |
None. |
|
| DeliveryHour | integer |
None. |
|
| DeliveryMinute | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Name": "sample string 1",
"NumberOfItems": 2,
"DeliveryHour": 1,
"DeliveryMinute": 1
}
application/xml, text/xml
Sample:
<CateringOrderProductOtherPutDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bluedock.Booking.Rest.Models.Catering"> <DeliveryHour>1</DeliveryHour> <DeliveryMinute>1</DeliveryMinute> <Name>sample string 1</Name> <NumberOfItems>2</NumberOfItems> </CateringOrderProductOtherPutDTO>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.