POST api/Deliverysheet/ModifyOrderStatus
Request Information
URI Parameters
None.
Body Parameters
ModifyOrderBindingModels| Name | Description | Type | Additional information |
|---|---|---|---|
| GlobalOrderId | string |
None. |
|
| OrderId | integer |
Required |
|
| CustomerId | string |
Required |
|
| OrderStatus | OrderStatus |
Required |
|
| StatusComment | string |
Required |
Request Formats
application/json, text/json
Sample:
{
"GlobalOrderId": "sample string 1",
"OrderId": 2,
"CustomerId": "sample string 3",
"OrderStatus": 0,
"StatusComment": "sample string 4"
}
application/xml, text/xml
Sample:
<ModifyOrderBindingModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Coke.Models.WebApi.BindingModels.DeliverySheet"> <CustomerId>sample string 3</CustomerId> <GlobalOrderId>sample string 1</GlobalOrderId> <OrderId>2</OrderId> <OrderStatus>Placed</OrderStatus> <StatusComment>sample string 4</StatusComment> </ModifyOrderBindingModels>
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.