POST Marketing/FreeShippingRates

Free Shipping Rates

Request Information

URI Parameters

None.

Body Parameters

BaseRequest
NameDescriptionTypeAdditional 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.Web.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 FreeShippingRate
NameDescriptionTypeAdditional information
ShippingMeansID

ShippingMeansID

integer

None.

FromValue

The minimun value needed to get free shipping with this shipping means, e.g. Order.Price_Amount

decimal number

None.

FromBaseValue

The minimun value needed to get free shipping with this shipping means, e.g. Order.Price_Base

decimal number

None.

ValueType

The type of value used to match FreeShippingFromOrderValue, e.g. Amount, Quantity...

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ShippingMeansID": 1,
    "FromValue": 1.0,
    "FromBaseValue": 1.0,
    "ValueType": "sample string 2"
  },
  {
    "ShippingMeansID": 1,
    "FromValue": 1.0,
    "FromBaseValue": 1.0,
    "ValueType": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfFreeShippingRate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Web.Models.View.Marketing">
  <FreeShippingRate>
    <FromBaseValue>1</FromBaseValue>
    <FromValue>1</FromValue>
    <ShippingMeansID>1</ShippingMeansID>
    <ValueType>sample string 2</ValueType>
  </FreeShippingRate>
  <FreeShippingRate>
    <FromBaseValue>1</FromBaseValue>
    <FromValue>1</FromValue>
    <ShippingMeansID>1</ShippingMeansID>
    <ValueType>sample string 2</ValueType>
  </FreeShippingRate>
</ArrayOfFreeShippingRate>