Skip to main content

Create Fault Rule

POST 

https://secure.fleetio.com/api/v1/fault_rules

Creates a new Fault Rule

Request

Body

    codestringrequired

    The diagnostic trouble code.

    Possible values: <= 255 characters

    descriptionstring

    A short description about the problem.

    namestring

    A short name for the alert.

    Possible values: <= 255 characters

Responses

OK

Response Headers
    Schema
      idinteger

      Possible values: >= 1

      created_atdate-time

      The date and time at which this record was created.

      Example: 2023-03-14T13:46:27-06:00
      updated_atdate-time

      The date and time at which this record was most recently updated.

      Example: 2023-03-14T13:46:27-06:00
      account_idId (integer)required

      Possible values: >= 1

      codestringrequired

      The diagnostic trouble code.

      descriptionstringnullablerequired

      A short description about the problem.

      priority_handlingstringnullablerequired

      The priority handling for the alert. This is configurable through the Fleetio dashboard under Fault Rules.

      Possible values: [off, ignore, critical]

      namestringnullablerequired

      A short name for the alert.

    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 'https://secure.fleetio.com/api/v1/fault_rules' \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/json' \
    -H 'Authorization: Token <Authorization>' \
    -H 'Account-Token: <Authorization>' \
    -d '{
    "code": "string",
    "description": "string",
    "name": "string"
    }'
    Request Collapse all
    Base URL
    https://secure.fleetio.com/api
    Auth
    Body
    {
      "code": "string",
      "description": "string",
      "name": "string"
    }
    
    ResponseClear

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