Skip to main content

Update Tire

PATCH 

https://secure.fleetio.com/api/tires/:id

Updates a Tire

Request

Path Parameters

    id stringrequired

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

    The id of the relevant record

Body

    part_idNullableId (integer)nullable

    Possible values: >= 1

    tire_position_idNullableId (integer)nullable

    Possible values: >= 1

    pressureinteger

    Pressure

    tread_depthinteger

    Tread Depth

    tinstring

    Tire Identification Number (TIN)

Responses

OK

Schema
    idId (integer)required

    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
    tire_position_idNullableId (integer)nullable

    Possible values: >= 1

    part_idNullableId (integer)nullable

    Possible values: >= 1

    axle_config_idNullableId (integer)nullable

    Possible values: >= 1

    pressurefloatnullable

    The Tire Pressure of the Tire in PSI

    tread_depthfloatnullable

    The Tread Depth of the Tire in 1/32 Inch

    current_meterfloat

    The meter of the Tire

    tinstringnullable

    The Tire Identification Number (TIN) of the Tire.

    Example: CC9L XYZ 1023
    tread_depth_healthstring

    The Tread Depth health.

    Possible values: [unknown, normal, warning, low]

    pressure_healthstring

    The Tire Pressure health

    Possible values: [unknown, normal, warning, low]

    installed_atdate-time
    tire_config objectnullable
    idId (integer)

    Possible values: >= 1

    aspect_ratiofloat

    Aspect ratio of tire.

    rim_diameterfloat

    Rim diameter of tire.

    load_indexfloat

    Load index of tire.

    metric_typestring

    Metric type of tire.

    Possible values: [EU, P, HL, T, LT, C, ST]

    widthfloat

    Width of tire.

    constructionstring

    Construction type of tire.

    Possible values: [B, R, D]

    speed_ratingstring

    Speed rating of tire.

    Possible values: [A1, A2, A3, A4, A5, A6, A7, A8, B, C, D, E, F, G, H, J, K, L, M, N, P, Q, R, S, T, U, V, W, Y]

    factory_tread_depthfloat

    Tread depth of tire in /32" when new, as specified by the manufacturer.

    minimum_tread_depthfloat

    The legal minimum tread depth, in /32".

    life_expectancyinteger

    The Life Expectancy or “Warranty” of a tire is the expected meter range, usually measured in miles, of a given tire as specified by the manufacturer.

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/tires/:id' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Token <Authorization>' \
-H 'Account-Token: <Authorization>' \
-d '{
"part_id": 0,
"tire_position_id": 0,
"pressure": 0,
"tread_depth": 0,
"tin": "string"
}'
Request Collapse all
Base URL
https://secure.fleetio.com/api
Auth
Parameters
— pathrequired
Body
{
  "part_id": 0,
  "tire_position_id": 0,
  "pressure": 0,
  "tread_depth": 0,
  "tin": "string"
}
ResponseClear

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