Skip to main content

Update Fault

PATCH 

https://secure.fleetio.com/api/v1/faults/:id

Update a Fault Record

Request

Path Parameters

    id stringrequired

    Possible values: Value must match regular expression ^[0-9]+$

    The id of the relevant record

Body

    vehicle_idId (integer)

    Possible values: >= 1

    codestring

    The diagnostic trouble code. Must correspond with an existing Fault Rule.

    Possible values: <= 255 characters

    countinteger

    The number of times this Fault has occurred.

    descriptionstring

    A short description about the problem.

    external_idstring

    An external identifier for the Fault, if applicable.

    Possible values: <= 255 characters

    last_occurred_atdate-time

    The date and time when the Fault last occurred. We recommend using ISO-8601 formatted dates to avoid ambiguity.

    Example: 2023-03-14T13:46:27-06:00
    namestring

    The name or label for the Fault.

    Possible values: <= 255 characters

    statusstring

    The status of the Fault.

    Possible values: [open, resolved, ignored]

    sourcestring

    The source or origin of the Fault.

Responses

OK

Authorization: Authorization

name: Authorizationtype: apiKeyin: headerdescription: Prefix the value with "Token", for example: "Token 76cbe06c49a64".
You can generate a new API key [here](https://secure.fleetio.com/api_keys).
name: Account-Tokentype: apiKeyin: headerdescription: You can find your Account-Token [here](https://secure.fleetio.com/api_keys)
curl -L -X PATCH 'https://secure.fleetio.com/api/v1/faults/:id' \
-H 'Content-Type: application/json' \
-H 'Authorization: <Authorization>' \
-H 'Account-Token: <Authorization>' \
-d '{
"vehicle_id": 0,
"code": "string",
"count": 0,
"description": "string",
"external_id": "string",
"last_occurred_at": "2023-03-14T13:46:27-06:00",
"name": "string",
"status": "open",
"source": "string"
}'
Request Collapse all
Base URL
https://secure.fleetio.com/api
Auth
Parameters
— pathrequired
Body
{
  "vehicle_id": 0,
  "code": "string",
  "count": 0,
  "description": "string",
  "external_id": "string",
  "last_occurred_at": "2023-03-14T13:46:27-06:00",
  "name": "string",
  "status": "open",
  "source": "string"
}
ResponseClear

Click the Send API Request button above and see the response here!