POST Logistics/ShippingMeansWarehouses

All ShippingMeansWarehouses of a store

Request Information

URI Parameters

None.

Body Parameters

ShippingMeansWarehousesRequest
NameDescriptionTypeAdditional information
MeansID

integer

None.

WarehouseID

integer

None.

Lang

string

None.

StoreID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "MeansID": 1,
  "WarehouseID": 1,
  "Lang": "sample string 1",
  "StoreID": 2
}

application/xml, text/xml

Sample:
<ShippingMeansWarehousesRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Logistics">
  <Lang xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">sample string 1</Lang>
  <StoreID xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">2</StoreID>
  <MeansID>1</MeansID>
  <WarehouseID>1</WarehouseID>
</ShippingMeansWarehousesRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ShippingMeansWarehousesView
NameDescriptionTypeAdditional information
TotalCount

integer

None.

ShippingMeansWarehouses

Collection of ShippingMeansWarehouse

None.

Response Formats

application/json, text/json

Sample:
{
  "TotalCount": 1,
  "ShippingMeansWarehouses": [
    {
      "MeansID": 1,
      "MeansName": "sample string 2",
      "WarehouseID": 3,
      "WarehouseName": "sample string 4"
    },
    {
      "MeansID": 1,
      "MeansName": "sample string 2",
      "WarehouseID": 3,
      "WarehouseName": "sample string 4"
    }
  ]
}

application/xml, text/xml

Sample:
<ShippingMeansWarehousesView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Logistics">
  <ShippingMeansWarehouses>
    <ShippingMeansWarehouse>
      <MeansID>1</MeansID>
      <MeansName>sample string 2</MeansName>
      <WarehouseID>3</WarehouseID>
      <WarehouseName>sample string 4</WarehouseName>
    </ShippingMeansWarehouse>
    <ShippingMeansWarehouse>
      <MeansID>1</MeansID>
      <MeansName>sample string 2</MeansName>
      <WarehouseID>3</WarehouseID>
      <WarehouseName>sample string 4</WarehouseName>
    </ShippingMeansWarehouse>
  </ShippingMeansWarehouses>
  <TotalCount>1</TotalCount>
</ShippingMeansWarehousesView>