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": "88355428-b2f5-46cd-af42-13713ab7c7ad",
"MalfunctionLevel": 0
},
{
"VehicleId": "88355428-b2f5-46cd-af42-13713ab7c7ad",
"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>88355428-b2f5-46cd-af42-13713ab7c7ad</VehicleId>
</VehicleCurrentMalfunctionDto>
<VehicleCurrentMalfunctionDto>
<MalfunctionLevel>Null</MalfunctionLevel>
<VehicleId>88355428-b2f5-46cd-af42-13713ab7c7ad</VehicleId>
</VehicleCurrentMalfunctionDto>
</ArrayOfVehicleCurrentMalfunctionDto>