POST Logistics/ShippingZoneLocation

GetShippingZoneLocations

Request Information

URI Parameters

None.

Body Parameters

GetShippingZoneLocationRequest
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:
<GetShippingZoneLocationRequest 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>
</GetShippingZoneLocationRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ShippingZoneLocation
NameDescriptionTypeAdditional information
ID

integer

None.

ZoneID

integer

None.

LocationID

The id of this location, e.g. LocalityID, CountryID, PlaceID...

integer

None.

TypeID

The entity type of this location, e.g. LocalityModel, CountryModel...

integer

None.

Excluded

this zone is excluded

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "ZoneID": 2,
  "LocationID": 3,
  "TypeID": 4,
  "Excluded": true
}

application/xml, text/xml

Sample:
<ShippingZoneLocation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Logistics">
  <Excluded>true</Excluded>
  <ID>1</ID>
  <LocationID>3</LocationID>
  <TypeID>4</TypeID>
  <ZoneID>2</ZoneID>
</ShippingZoneLocation>