DELETE Logistics/RemoveShippingPrice

Removes an existing ShippingPrice.

Request Information

URI Parameters

None.

Body Parameters

ShippingPriceBinding
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.

Lang

string

None.

StoreID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "MeansID": 2,
  "ZoneID": 3,
  "BaseValue": 4.0,
  "TariffID": 1,
  "Amount": 5.0,
  "BusinessID": 1,
  "Lang": "sample string 6",
  "StoreID": 7
}

application/xml, text/xml

Sample:
<ShippingPriceBinding xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Binding.Logistics">
  <Lang xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">sample string 6</Lang>
  <StoreID xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">7</StoreID>
  <Amount>5</Amount>
  <BaseValue>4</BaseValue>
  <BusinessID>1</BusinessID>
  <ID>1</ID>
  <MeansID>2</MeansID>
  <TariffID>1</TariffID>
  <ZoneID>3</ZoneID>
</ShippingPriceBinding>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.