POST Logistics/AddShippingZone

Adds a ShippingZone.

Request Information

URI Parameters

None.

Body Parameters

AddShippingZoneBinding
NameDescriptionTypeAdditional information
Name

string

Required

Disabled

date

None.

Priority

Sets the priority when more than zone coincides with the destination address

integer

None.

InvoiceRequired

Shippings to this zone require an Invoice

boolean

None.

Lang

string

None.

StoreID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Name": "sample string 1",
  "Disabled": "2025-12-06T09:15:06.3585883+01:00",
  "Priority": 2,
  "InvoiceRequired": true,
  "Lang": "sample string 4",
  "StoreID": 5
}

application/xml, text/xml

Sample:
<AddShippingZoneBinding 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 4</Lang>
  <StoreID xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">5</StoreID>
  <Disabled>2025-12-06T09:15:06.3585883+01:00</Disabled>
  <InvoiceRequired>true</InvoiceRequired>
  <Name>sample string 1</Name>
  <Priority>2</Priority>
</AddShippingZoneBinding>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

integer

Response Formats

application/json, text/json

Sample:
1

application/xml, text/xml

Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>