GET api/v2/vehiclehealth/vehicleswithmalfunctionforcustomer/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of VehicleCurrentMalfunctionDto| Name | Description | Type | Additional information |
|---|---|---|---|
| VehicleId |
Identifiant du véhicule |
globally unique identifier |
None. |
| MalfunctionLevel | VehicleMalfunctionLevel |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"VehicleId": "cbea16bf-001e-46ff-8046-13c30ba38fbd",
"MalfunctionLevel": 0
},
{
"VehicleId": "cbea16bf-001e-46ff-8046-13c30ba38fbd",
"MalfunctionLevel": 0
}
]
application/xml, text/xml
Sample:
<ArrayOfVehicleCurrentMalfunctionDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Vehizen.Domain">
<VehicleCurrentMalfunctionDto>
<MalfunctionLevel>Null</MalfunctionLevel>
<VehicleId>cbea16bf-001e-46ff-8046-13c30ba38fbd</VehicleId>
</VehicleCurrentMalfunctionDto>
<VehicleCurrentMalfunctionDto>
<MalfunctionLevel>Null</MalfunctionLevel>
<VehicleId>cbea16bf-001e-46ff-8046-13c30ba38fbd</VehicleId>
</VehicleCurrentMalfunctionDto>
</ArrayOfVehicleCurrentMalfunctionDto>