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": "e9dd0164-b167-4c93-9868-9af44f5a5d78",
"MalfunctionLevel": 0
},
{
"VehicleId": "e9dd0164-b167-4c93-9868-9af44f5a5d78",
"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>e9dd0164-b167-4c93-9868-9af44f5a5d78</VehicleId>
</VehicleCurrentMalfunctionDto>
<VehicleCurrentMalfunctionDto>
<MalfunctionLevel>Null</MalfunctionLevel>
<VehicleId>e9dd0164-b167-4c93-9868-9af44f5a5d78</VehicleId>
</VehicleCurrentMalfunctionDto>
</ArrayOfVehicleCurrentMalfunctionDto>