GET v1/ShippingTypes
Get a list with all available Shipping Types.
Request Information
Requires Authorization!
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
A list of ShippingType objects.
Collection of ShippingType
| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Gets or sets the identifier. |
integer |
Required |
| Code |
Gets or sets the code. |
string |
Required Max length: 50 |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Code": "sample string 2"
},
{
"Id": 1,
"Code": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfShippingType xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ShippingType>
<Id>1</Id>
<Code>sample string 2</Code>
</ShippingType>
<ShippingType>
<Id>1</Id>
<Code>sample string 2</Code>
</ShippingType>
</ArrayOfShippingType>