View the List of DTCs for specific vehicleId.
POST {{baseUrl}}/vehicles/:vehicleId/dtcReadouts?ecuId=<string>&dtcStatus=<string>
This API creates a readout of DTCs for one vehicle. If the result is available immediately, the result is returned. If the result isn't available, a location to the DTC readout is returned. This location shall be polled until the result is available. INFO: GET Requests are not yet supported!
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
ecuId | string | Return DTCs from this ECU id only. Default: Return DTCs from all ECUs. | |
dtcStatus | string | Returns DTCs with this statuses only. Default: Return DTCs with all statuses. |
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Accept | string |
RESPONSES
status: Created
{"dtcReadout":{"asyncStatus":"Pending","id":"\u003cstring\u003e","messageTimestamp":"\u003cdateTime\u003e","vehicleId":"\u003cstring\u003e","dtcs":[{"dtcId":"\u003cstring\u003e","ecuId":"\u003cstring\u003e","status":"ACTIVE_AND_STORED_ERROR","occurrenceCounter":"\u003cinteger\u003e"},{"dtcId":"\u003cstring\u003e","ecuId":"\u003cstring\u003e","status":"ACTIVE","occurrenceCounter":"\u003cinteger\u003e"}]}}