GET api/VehicleWeightCategory/GetAllVehicleWeightCategory
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of VehicleWeightCategoryDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| category | string |
None. |
|
| name | string |
None. |
|
| title | string |
None. |
|
| priority | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"category": "sample string 2",
"name": "sample string 3",
"title": "sample string 4",
"priority": 5
},
{
"id": 1,
"category": "sample string 2",
"name": "sample string 3",
"title": "sample string 4",
"priority": 5
}
]
application/xml, text/xml
Sample:
<ArrayOfVehicleWeightCategoryDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Application.DTOs">
<VehicleWeightCategoryDTO>
<category>sample string 2</category>
<id>1</id>
<name>sample string 3</name>
<priority>5</priority>
<title>sample string 4</title>
</VehicleWeightCategoryDTO>
<VehicleWeightCategoryDTO>
<category>sample string 2</category>
<id>1</id>
<name>sample string 3</name>
<priority>5</priority>
<title>sample string 4</title>
</VehicleWeightCategoryDTO>
</ArrayOfVehicleWeightCategoryDTO>