POST api/Order/update_order_packed

Request Information

URI Parameters

None.

Body Parameters

OrderStatusModel
NameDescriptionTypeAdditional information
order_id

integer

None.

order_number

string

None.

status

string

None.

Request Formats

application/json, text/json

Sample:
{
  "order_id": 1,
  "order_number": "sample string 2",
  "status": "sample string 3"
}

application/xml, text/xml

Sample:
<OrderStatusModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebStoreAPI.Models">
  <order_id>1</order_id>
  <order_number>sample string 2</order_number>
  <status>sample string 3</status>
</OrderStatusModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResultModelOfString
NameDescriptionTypeAdditional information
ResponseCode

integer

None.

Message

string

None.

Data

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ResponseCode": 1,
  "Message": "sample string 2",
  "Data": "sample string 3"
}

application/xml, text/xml

Sample:
<ResultModelOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebStoreAPI.Models">
  <Data>sample string 3</Data>
  <Message>sample string 2</Message>
  <ResponseCode>1</ResponseCode>
</ResultModelOfstring>