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": "a125b1c5-b5e0-4ad1-98aa-3ddcbaef5d25",
"ImporterId": "0605e380-d19e-45d7-8bce-f1402235c639",
"OrderChanel": 3,
"Note": "sample string 4",
"CreatedTime": "2026-04-14T19:44:51.4903846+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-14T19:44:51.4903846+07:00</CreatedTime> <Id>a125b1c5-b5e0-4ad1-98aa-3ddcbaef5d25</Id> <ImporterId>0605e380-d19e-45d7-8bce-f1402235c639</ImporterId> <Note>sample string 4</Note> <OrderChanel>3</OrderChanel> <Status>DONE</Status> </OrderInfoModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
None.