POST api/OrderCustomer/UpdateInfoOrder
Request Information
URI Parameters
None.
Body Parameters
OrderInfoModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| ImporterId | globally unique identifier |
None. |
|
| OrderChanel | integer |
None. |
|
| Note | string |
None. |
|
| CreatedTime | date |
None. |
|
| Status | OrderCustomerStatusEnum |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "fae30612-7309-464f-95aa-53277db454b1",
"ImporterId": "c0b1f253-3b24-4785-ad59-8bbc78b5de91",
"OrderChanel": 3,
"Note": "sample string 4",
"CreatedTime": "2026-04-21T17:18:08.4172328+07:00",
"Status": 0
}
application/xml, text/xml
Sample:
<OrderInfoModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Common.Model.Request.OrderCustomer"> <CreatedTime>2026-04-21T17:18:08.4172328+07:00</CreatedTime> <Id>fae30612-7309-464f-95aa-53277db454b1</Id> <ImporterId>c0b1f253-3b24-4785-ad59-8bbc78b5de91</ImporterId> <Note>sample string 4</Note> <OrderChanel>3</OrderChanel> <Status>DONE</Status> </OrderInfoModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
None.