GET api/VINs/GetVINs
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of VINs| Name | Description | Type | Additional information |
|---|---|---|---|
| VIN_Id | integer |
None. |
|
| VIN_Code | string |
None. |
|
| VIN_Chassis | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"VIN_Id": 1,
"VIN_Code": "sample string 2",
"VIN_Chassis": "sample string 3"
},
{
"VIN_Id": 1,
"VIN_Code": "sample string 2",
"VIN_Chassis": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfVINs xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MSWorld_Api.Models">
<VINs>
<VIN_Chassis>sample string 3</VIN_Chassis>
<VIN_Code>sample string 2</VIN_Code>
<VIN_Id>1</VIN_Id>
</VINs>
<VINs>
<VIN_Chassis>sample string 3</VIN_Chassis>
<VIN_Code>sample string 2</VIN_Code>
<VIN_Id>1</VIN_Id>
</VINs>
</ArrayOfVINs>