GET api/EcomSync/get_pick_list/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ResultModelOfPickListModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseCode | integer |
None. |
|
| Message | string |
None. |
|
| Data | PickListModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"ResponseCode": 1,
"Message": "sample string 2",
"Data": {
"Master": {
"order_id": 1,
"order_number": "sample string 2",
"shipping_first_name": "sample string 3",
"billing_phone": "sample string 4",
"customer_notes": "sample string 5",
"order_date": "sample string 6",
"order_time": "sample string 7",
"shipping_address_1": "sample string 8",
"shipping_address_2": "sample string 9",
"shipping_city": "sample string 10"
},
"Details": null
}
}
application/xml, text/xml
Sample:
<ResultModelOfPickListModelZvxXgZyN xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebStoreAPI.Models">
<Data>
<Details i:nil="true" />
<Master>
<billing_phone>sample string 4</billing_phone>
<customer_notes>sample string 5</customer_notes>
<order_date>sample string 6</order_date>
<order_id>1</order_id>
<order_number>sample string 2</order_number>
<order_time>sample string 7</order_time>
<shipping_address_1>sample string 8</shipping_address_1>
<shipping_address_2>sample string 9</shipping_address_2>
<shipping_city>sample string 10</shipping_city>
<shipping_first_name>sample string 3</shipping_first_name>
</Master>
</Data>
<Message>sample string 2</Message>
<ResponseCode>1</ResponseCode>
</ResultModelOfPickListModelZvxXgZyN>