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
NameDescriptionTypeAdditional information
VehicleId

Identifiant du véhicule

globally unique identifier

None.

MalfunctionLevel

VehicleMalfunctionLevel

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "VehicleId": "c8de6efb-5b97-4b5d-917e-39dccff61f73",
    "MalfunctionLevel": 0
  },
  {
    "VehicleId": "c8de6efb-5b97-4b5d-917e-39dccff61f73",
    "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>c8de6efb-5b97-4b5d-917e-39dccff61f73</VehicleId>
  </VehicleCurrentMalfunctionDto>
  <VehicleCurrentMalfunctionDto>
    <MalfunctionLevel>Null</MalfunctionLevel>
    <VehicleId>c8de6efb-5b97-4b5d-917e-39dccff61f73</VehicleId>
  </VehicleCurrentMalfunctionDto>
</ArrayOfVehicleCurrentMalfunctionDto>