POST Orders/OrderShippingItem
GetOrderShippingItems
Request Information
URI Parameters
None.
Body Parameters
GetOrderShippingItemRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| OrderShippingID | integer |
None. |
|
| OrderID | integer |
None. |
|
| Lang | string |
None. |
|
| StoreID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"OrderShippingID": 2,
"OrderID": 3,
"Lang": "sample string 4",
"StoreID": 5
}
application/xml, text/xml
Sample:
<GetOrderShippingItemRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Order"> <Lang xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">sample string 4</Lang> <StoreID xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">5</StoreID> <OrderID xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Order">3</OrderID> <ID>1</ID> <OrderShippingID>2</OrderShippingID> </GetOrderShippingItemRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
OrderShippingItem| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Quantity | decimal number |
None. |
|
| VariationID | integer |
None. |
|
| OrderItemID | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": 1,
"Quantity": 2.0,
"VariationID": 3,
"OrderItemID": 4
}
application/xml, text/xml
Sample:
<OrderShippingItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Order"> <ID>1</ID> <OrderItemID>4</OrderItemID> <Quantity>2</Quantity> <VariationID>3</VariationID> </OrderShippingItem>