POST UpdateOrder
Request Information
URI Parameters
None.
Body Parameters
UpdateOrder| Name | Description | Type | Additional information |
|---|---|---|---|
| UserInfo | UserData |
None. |
|
| id | string |
None. |
|
| orderno | string |
None. |
|
| zone | string |
None. |
|
| town | string |
None. |
|
| customer | string |
None. |
|
| transport | string |
None. |
|
| edate | string |
None. |
|
| total_qty | string |
None. |
|
| total_amount | string |
None. |
|
| OrderDetail | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserInfo": {
"UserId": "sample string 1",
"Token": "sample string 2",
"App_Key": "sample string 3"
},
"id": "sample string 1",
"orderno": "sample string 2",
"zone": "sample string 3",
"town": "sample string 4",
"customer": "sample string 5",
"transport": "sample string 6",
"edate": "sample string 7",
"total_qty": "sample string 8",
"total_amount": "sample string 9",
"OrderDetail": "sample string 10"
}
application/xml, text/xml
Sample:
<UpdateOrder xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MobileServices.Controllers">
<OrderDetail>sample string 10</OrderDetail>
<UserInfo>
<App_Key>sample string 3</App_Key>
<Token>sample string 2</Token>
<UserId>sample string 1</UserId>
</UserInfo>
<customer>sample string 5</customer>
<edate>sample string 7</edate>
<id>sample string 1</id>
<orderno>sample string 2</orderno>
<total_amount>sample string 9</total_amount>
<total_qty>sample string 8</total_qty>
<town>sample string 4</town>
<transport>sample string 6</transport>
<zone>sample string 3</zone>
</UpdateOrder>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Result| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | integer |
None. |
|
| Message | string |
None. |
|
| Response | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": 1,
"Message": "sample string 2",
"Response": "sample string 3"
}
application/xml, text/xml
Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MobileServices"> <Message>sample string 2</Message> <Response>sample string 3</Response> <Status>1</Status> </Result>