POST Logistics/ShippingPrices
Get all the ShippingPrices
Request Information
URI Parameters
None.
Body Parameters
BaseRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Lang | string |
None. |
|
| StoreID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Lang": "sample string 1",
"StoreID": 2
}
application/xml, text/xml
Sample:
<BaseRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base"> <Lang>sample string 1</Lang> <StoreID>2</StoreID> </BaseRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of ShippingPrice| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| MeansID | integer |
None. |
|
| ZoneID |
The zone this price applies to |
integer |
None. |
| BaseValue |
The base top value used to match a price with the order. Excluding taxes //tbd |
decimal number |
None. |
| TariffID |
The Tariff this price applies to |
integer |
None. |
| Amount |
The price to ship freight to this zone. Excluding taxes //tbd |
decimal number |
None. |
| BusinessID |
The Business this price applies to |
integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"MeansID": 2,
"ZoneID": 3,
"BaseValue": 4.0,
"TariffID": 1,
"Amount": 5.0,
"BusinessID": 1
},
{
"ID": 1,
"MeansID": 2,
"ZoneID": 3,
"BaseValue": 4.0,
"TariffID": 1,
"Amount": 5.0,
"BusinessID": 1
}
]
application/xml, text/xml
Sample:
<ArrayOfShippingPrice xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Logistics">
<ShippingPrice>
<Amount>5</Amount>
<BaseValue>4</BaseValue>
<BusinessID>1</BusinessID>
<ID>1</ID>
<MeansID>2</MeansID>
<TariffID>1</TariffID>
<ZoneID>3</ZoneID>
</ShippingPrice>
<ShippingPrice>
<Amount>5</Amount>
<BaseValue>4</BaseValue>
<BusinessID>1</BusinessID>
<ID>1</ID>
<MeansID>2</MeansID>
<TariffID>1</TariffID>
<ZoneID>3</ZoneID>
</ShippingPrice>
</ArrayOfShippingPrice>