POST Logistics/ShippingPrice

GetShippingPrices

Request Information

URI Parameters

None.

Body Parameters

GetShippingPriceRequest
NameDescriptionTypeAdditional information
ID

integer

None.

ZoneID

integer

None.

Lang

string

None.

StoreID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "ZoneID": 2,
  "Lang": "sample string 3",
  "StoreID": 4
}

application/xml, text/xml

Sample:
<GetShippingPriceRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Logistics">
  <Lang xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">sample string 3</Lang>
  <StoreID xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">4</StoreID>
  <ID>1</ID>
  <ZoneID>2</ZoneID>
</GetShippingPriceRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ShippingPrice
NameDescriptionTypeAdditional 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
}

application/xml, text/xml

Sample:
<ShippingPrice xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Logistics">
  <Amount>5</Amount>
  <BaseValue>4</BaseValue>
  <BusinessID>1</BusinessID>
  <ID>1</ID>
  <MeansID>2</MeansID>
  <TariffID>1</TariffID>
  <ZoneID>3</ZoneID>
</ShippingPrice>