1 Shipment Tariff
1.1 Elements
| Name | Type | Datatype | Example | Default | Description |
|---|
| Provider
| required
| string
| UPS
| -
| The selected Shipment Tariff. Currently only UPS shipment is supported for the API.
|
| Tariff
| required
| string
| Standard; ExpressSaver
| -
| The selected Shipment Tariff.
|
| Name
| required
| element
| -
| -
| Name of the shipment tariff.
|
1.2 Example
XML
<ShipmentTariff>
<Provider>UPS</Provider>
<Tariff>Standard</Tariff>
<Name>UPS Standard</Name>
</ShipmentTariff>
JSON
{
"Provider": "UPS",
"Tariff": "Standard",
"Name": "UPS Standard"
}
1.2.1 Additional response elements
| Name | Type | Datatype | Example | Default | Description |
|---|
| Zones
| optional
| element
| -
| -
| List of available shipping destinations for this tariff. Value consists of two letter iso codes, separated by a ';'.
|
1.3 Example
XML
<ShipmentTariff>
<Provider>UPS</Provider>
<Tariff>Standard</Tariff>
<Name>UPS Standard</Name>
<Zones>DE;AT;CH</Zones>
</ShipmentTariff>
JSON
{
"Provider": "UPS",
"Tariff": "Standard",
"Name": "UPS Standard"
"Zones": "DE;AT;CH"
}