PUT api/OuterGateClientOrder/UpdateClientOrder?clientOrderId={clientOrderId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| clientOrderId | integer |
Required |
Body Parameters
OuterOrderClientTinyModelIn| Name | Description | Type | Additional information |
|---|---|---|---|
| DeliveryDate | date |
Required |
|
| Note | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"DeliveryDate": "2026-04-17T15:34:06.8871181+02:00",
"Note": "sample string 2"
}
application/xml, text/xml
Sample:
<OuterOrderClientTinyModelIn xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/tocode.CodePlast.CommonModels.Models.ClientOrder"> <DeliveryDate>2026-04-17T15:34:06.8871181+02:00</DeliveryDate> <Note>sample string 2</Note> </OuterOrderClientTinyModelIn>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
OutComeBaseModelOut| Name | Description | Type | Additional information |
|---|---|---|---|
| NewIdentifier | integer |
None. |
|
| Warning | boolean |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"NewIdentifier": 1,
"Warning": true,
"Message": "sample string 2"
}
application/xml, text/xml
Sample:
<OutComeBaseModelOut xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/tocode.CodePlast.CommonModels.Models"> <Message>sample string 2</Message> <NewIdentifier>1</NewIdentifier> <Warning>true</Warning> </OutComeBaseModelOut>