POST Logistics/StoreShippingMeans
Returns a list of ShippingMeans
Request Information
URI Parameters
None.
Body Parameters
BaseRequest| Name | Description | Type | Additional 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.Admin.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 ShippingMeans| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| CarrierID | integer |
None. |
|
| Name | string |
None. |
|
| Description | string |
None. |
|
| PrivateObservations |
Private observations about this means |
string |
None. |
| Disabled | date |
None. |
|
| BaseID |
The base used to match a price with the order |
integer |
None. |
| CustomerPickUp |
This shipping means defines a customer pick up |
boolean |
None. |
| TaxRateID |
The taxRate to apply to this model |
integer |
None. |
| IsExpress | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"CarrierID": 1,
"Name": "sample string 2",
"Description": "sample string 3",
"PrivateObservations": "sample string 4",
"Disabled": "2025-12-06T09:16:20.8449144+01:00",
"BaseID": 5,
"CustomerPickUp": true,
"TaxRateID": 7,
"IsExpress": true
},
{
"ID": 1,
"CarrierID": 1,
"Name": "sample string 2",
"Description": "sample string 3",
"PrivateObservations": "sample string 4",
"Disabled": "2025-12-06T09:16:20.8449144+01:00",
"BaseID": 5,
"CustomerPickUp": true,
"TaxRateID": 7,
"IsExpress": true
}
]
application/xml, text/xml
Sample:
<ArrayOfShippingMeans xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Logistics">
<ShippingMeans>
<BaseID>5</BaseID>
<CarrierID>1</CarrierID>
<CustomerPickUp>true</CustomerPickUp>
<Description>sample string 3</Description>
<Disabled>2025-12-06T09:16:20.8449144+01:00</Disabled>
<ID>1</ID>
<IsExpress>true</IsExpress>
<Name>sample string 2</Name>
<PrivateObservations>sample string 4</PrivateObservations>
<TaxRateID>7</TaxRateID>
</ShippingMeans>
<ShippingMeans>
<BaseID>5</BaseID>
<CarrierID>1</CarrierID>
<CustomerPickUp>true</CustomerPickUp>
<Description>sample string 3</Description>
<Disabled>2025-12-06T09:16:20.8449144+01:00</Disabled>
<ID>1</ID>
<IsExpress>true</IsExpress>
<Name>sample string 2</Name>
<PrivateObservations>sample string 4</PrivateObservations>
<TaxRateID>7</TaxRateID>
</ShippingMeans>
</ArrayOfShippingMeans>