GET v1/TransportCategories/{transportCategoryId}
Get detailed information about a TransportCategory.
Request Information
Requires Authorization!
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
transportCategoryId |
The id of the TransportCategory. |
integer |
Required. |
Body Parameters
None.
Response Information
Resource Description
The TransportCategory object.
TransportCategory
Name | Description | Type | Additional information |
---|---|---|---|
MaxLength |
The Max Length for the goods to transport with this category. |
decimal number |
None. |
MinLength |
The Min Length for the goods to transport with this category. |
decimal number |
None. |
MaxWeight |
The Max Weight for the goods to transport with this category. |
decimal number |
None. |
MinWeight |
The Min Weight for the goods to transport with this category. |
decimal number |
None. |
MaxVolume |
The Max Volume for the goods to transport with this category. |
decimal number |
None. |
Id |
Gets or sets the identifier. |
integer |
Required |
Code |
Gets or sets the code. |
string |
Required Max length: 100 |
ShopOwnerId | integer |
Required |
Response Formats
application/json, text/json
Sample:
{ "MaxLength": 1.0, "MinLength": 1.0, "MaxWeight": 1.0, "MinWeight": 1.0, "MaxVolume": 1.0, "Id": 1, "Code": "sample string 2", "ShopOwnerId": 3 }
application/xml, text/xml
Sample:
<TransportCategory xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Id>1</Id> <Code>sample string 2</Code> <ShopOwnerId>3</ShopOwnerId> <MaxLength>1</MaxLength> <MinLength>1</MinLength> <MaxWeight>1</MaxWeight> <MinWeight>1</MinWeight> <MaxVolume>1</MaxVolume> </TransportCategory>