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": "0f95a7ea-5b38-4cd6-8aa6-3868bf91f5c6",
"ImporterId": "6804e17f-43ae-4601-930d-cfb81d253266",
"OrderChanel": 3,
"Note": "sample string 4",
"CreatedTime": "2025-12-24T20:23:27.4182791+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>2025-12-24T20:23:27.4182791+07:00</CreatedTime> <Id>0f95a7ea-5b38-4cd6-8aa6-3868bf91f5c6</Id> <ImporterId>6804e17f-43ae-4601-930d-cfb81d253266</ImporterId> <Note>sample string 4</Note> <OrderChanel>3</OrderChanel> <Status>DONE</Status> </OrderInfoModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.