GET api/v2/vehiclehealth/vehicleswithmalfunction
Retourne la liste véhicules avec un dysfonctionnement
Request Information
URI Parameters
None.
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": "bba33535-ef27-46d7-844b-55c48c2ffc0a",
"MalfunctionLevel": 0
},
{
"VehicleId": "bba33535-ef27-46d7-844b-55c48c2ffc0a",
"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>bba33535-ef27-46d7-844b-55c48c2ffc0a</VehicleId>
</VehicleCurrentMalfunctionDto>
<VehicleCurrentMalfunctionDto>
<MalfunctionLevel>Null</MalfunctionLevel>
<VehicleId>bba33535-ef27-46d7-844b-55c48c2ffc0a</VehicleId>
</VehicleCurrentMalfunctionDto>
</ArrayOfVehicleCurrentMalfunctionDto>