POST Logistics/ShippingMeans
Returns a ShippingMeans
Request Information
URI Parameters
None.
Body Parameters
ShippingMeanRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Lang | string |
None. |
|
| StoreID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"Lang": "sample string 2",
"StoreID": 3
}
application/xml, text/xml
Sample:
<ShippingMeanRequest 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 2</Lang> <StoreID xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">3</StoreID> <ID>1</ID> </ShippingMeanRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
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-06T05:42:04.623393+01:00",
"BaseID": 5,
"CustomerPickUp": true,
"TaxRateID": 7,
"IsExpress": true
}
application/xml, text/xml
Sample:
<ShippingMeans xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Logistics"> <BaseID>5</BaseID> <CarrierID>1</CarrierID> <CustomerPickUp>true</CustomerPickUp> <Description>sample string 3</Description> <Disabled>2025-12-06T05:42:04.623393+01:00</Disabled> <ID>1</ID> <IsExpress>true</IsExpress> <Name>sample string 2</Name> <PrivateObservations>sample string 4</PrivateObservations> <TaxRateID>7</TaxRateID> </ShippingMeans>