Skip to main content
PUT
/
api
/
v1
/
vehicle-checks
/
defects
/
defect-status
/
{defectId}
Update Defect Status
curl --request PUT \
  --url https://vehiclechecks-public-api.connectedfleet.michelin.com/public/bvfm/vehicle-checks/public-api/api/v1/vehicle-checks/defects/defect-status/{defectId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "status": "<string>",
  "signature": "<string>",
  "repairDate": "<string>",
  "notes": "<string>"
}
'
"OPEN"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

defectId
string
required

System-generated unique identifier for the defect.

Body

application/json
status
string

The status to which the defect should be updated. Possible options for status: OPEN, DEFERRED, CLOSED_REPAIRED, CLOSED_DUPLICATE, CLOSED_NO_FAULT_FOUND.

signature
string

The signature of the person who modified the status.

repairDate
string

Date of repair in UTC, in the format yyyy-MM-dd'T'HH:mm'Z'.

notes
string

The notes for this status change. Included in the response if notes have been specified for this status change.

Response

200 - application/json

OK

The response is of type string.

Example:

"OPEN"