PUT v1/Orders/{orderId}/Deallocate
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| orderId | integer |
Required. |
Body Parameters
DeallocateOrderInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderRows |
Optional list of orderrows to deallocate. If no orderrows are specified, deallocation is performed on the all orderrows of this order. |
Collection of integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"OrderRows": [
1,
2
]
}
application/xml, text/xml
Sample:
<DeallocateOrderInfo xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<OrderRows>
<OrderRowId>1</OrderRowId>
<OrderRowId>2</OrderRowId>
</OrderRows>
</DeallocateOrderInfo>
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |