LogoLogo
ProductsUse casesDocsSupport
  • Introducing DriveKit
  • DriveKit Guides
  • Get started with drivekit
    • Trip recording lifecycle
    • iOS
      • 🚀Quick start
      • Advanced configurations
      • References
      • iOS DriveKit Demo App
    • Android
      • 🚀Quick start
      • Advanced configurations
      • References
      • Android DriveKit Demo App
      • Android 15 Migration guide
      • Android 14 Migration guide
      • Troubleshooting
  • Trip analysis
    • Introduction
    • iOS
      • Permissions
      • Trip management
      • TripListener
      • Crash Detection
      • Beacon usage
      • Bluetooth usage
      • Custom metadata
      • References (iOS)
    • Android
      • Runtime permissions
      • Trip management
      • TripListener
      • Crash Detection
      • Beacon usage
      • Bluetooth usage
      • Custom metadata
      • References (Android)
    • User interface
      • iOS
        • Get started
        • Working hours
        • Driver alert in case of crash
        • Trip recording widget
        • Location sharing
      • Android
        • Get started
        • Working hours
        • Driver alert in case of crash
        • Trip recording widget
        • Location sharing
    • REST services
      • Trip
      • References
    • Trip Simulator
      • iOS
      • Android
  • PERMISSIONS UTILS
    • Introduction
    • User interface
      • iOS
        • Get started
        • Main configurations
      • Android
        • Get started
        • Main configurations
  • COMMON UI
    • Introduction
    • iOS
      • Get started
    • Android
      • Get started
    • References
  • DRIVER DATA
    • Introduction
    • iOS
      • Get started
      • References (iOS)
    • Android
      • Get started
      • References (Android)
    • User interface
      • iOS
        • Get started
        • Advanced configurations
        • Trips widgets
        • My Synthesis
        • My Driver Profile
      • Android
        • Get Started
        • Advanced configurations
        • Trips widgets
        • My Synthesis
        • My Driver Profile
  • Driver Data Timeline UI
    • Introduction
    • iOS
      • Get started
    • Android
      • Get started
  • Vehicle
    • Introduction
    • iOS
      • Get started
      • Vehicle management
      • Beacon management
      • Bluetooth device management
      • Odometer
      • References (iOS)
    • Android
      • Get started
      • Vehicle management
      • Beacon management
      • Bluetooth device management
      • Odometer
      • References (Android)
    • User interface
      • iOS
        • Get started
        • Main configurations
        • Advanced configurations
      • Android
        • Get started
        • Main configurations
        • Advanced configurations
  • DRIVER ACHIEVEMENT
    • Introduction
    • iOS
      • Get started
    • Android
      • Get Started
    • User interface
      • iOS
      • Android
  • CHALLENGE
    • Introduction
    • Important challenge rules
    • iOS
      • Get started
      • References (iOS)
    • Android
      • Get started
      • References (Android)
    • User interface
      • iOS
        • Get started
      • Android
        • Get started
  • GROUP
    • Introduction
    • iOS
      • Get started
    • Android
      • Get started
  • React Native
    • Get started
    • Integration
  • Flutter
    • Get started
    • Integration
  • Push services
    • Introduction
    • Push Trip Data
    • Push Deleted trip
    • Push Crash Data
    • Push Diagnosis Data
  • ADMIN SERVICES
    • Beacon
      • Add
      • Replace
      • Delete
      • Configuration
    • Challenges
      • List of challenges
      • Challenge details
      • Registered users
      • Challenge ranking
      • Users' progress
      • Definitions
    • Customer
      • Activity timeline
    • Driver
      • Timeline
      • Synthesis
      • Identity
      • Status
      • Add or update a metadata
      • Vehicles
      • Profile
      • Application diagnoses
    • Drivers
      • Account
      • Statistics
      • Ranking
      • Expired accounts
    • Group
      • Timeline
      • Synthesis
    • Trips
      • Add or update a metadata
      • Delete a metadata
    • Vehicle
      • Create
      • Characteristics
      • Configuration
      • Statistics
      • Update mileage
      • Tire and brake wear update
      • References
  • Crashes
    • Annotate a crash
    • Revoke crash location URL
  • ENTERPRISE SERVICES
    • Introduction
    • Teams
      • Create a team
      • List of teams
      • Enable or disable a team
    • Hyper-admins
      • Create a hyper-admin
      • List of hyper-admins
      • Delete a hyper-admin
    • Monitoring
      • Get a push trip data report
      • Get a push crash data report
      • Request to retry failed trips
      • Request to retry failed crashes
      • Get the status of a task
  • Release notes
    • Changelog
      • iOS
      • Android
      • UI iOS
      • UI Android
Powered by GitBook
On this page
  • Wear value update
  • Request
  • updateVehicleWearRequest
  • Example of JSON body request

Was this helpful?

Export as PDF
  1. ADMIN SERVICES
  2. Vehicle

Tire and brake wear update

PreviousUpdate mileageNextReferences

Last updated 1 year ago

Was this helpful?

The tire and brake wear estimator returns the level of wear expressed in percent and the autonomy in kilometer.

It is possible to update the distance and the wear percentage based on observations made by a mechanic or during a technical inspection or a maintenance intervention on the vehicle.

In the case of a replacement, the distance and the wear must be set back to 0 km and 0% for the new component.

If you have your admin API key, you can try the API via this .

Wear value update

PUT https://service.drivequant.com/v3/drivekit/admin/vehicles/{vehicleId}/wear

Update the front/rear tire and brake wear values using the vehicle unique identifier.

Path Parameters

Name
Type
Description

vehicleId

string

Vehicle unique identifier

Headers

Name
Type
Description

DriveKit-Admin-API-Key

string

Admin API Key

Request Body

Name
Type
Description

component

integer

Component to update

drive

integer

Drivetrain of the component

wear

number

Level of wear in %

distance

number

Component distance in kilometer

{
  "analyzedDistance": 93,
  "creationDate": "2018-09-10T10:00:00.125+0200",
  "distance": 102,
  "offsetDistance": 9
}
Unprocessable Entity

Request

updateVehicleWearRequest

Field
Type
Description

component

int

Component considered for the update:

(1) Tires

(2) Brakes

drive

int

Drivetrain considered for the update:

(1) Front drive

(2) Rear drive

wear

double

Level of wear observed for the considered component.

This value is in percent (min. = 0% / max. = 100%)

distance

double

Distance traveled with the component in kilometer

min. = 0 km / max. = 300 000 km

  • The date of the recalibration is equal to the date of the request.

  • The parameters wear and distance are mandatory.

  • A component replacement is declared with wearPct = 0 % and declaredDistance = 0 km.

  • If the component is replaced, all synthesis data will be reset automatically.

  • It is not possible to reset the front and rear axle components at the same time. It is necessary to make two separated requests.

Example of JSON body request

To declare that the front tires of the vehicle have a wear level of 40% after 14,000 km, the body of the request is as follows:

{
  "component": 1,
  "distance": 14000,
  "drive": 1,
  "wear": 40
}

To declare that the rear brakes of the vehicle have just been changed, the body of the request must be as shown below:

{
  "component": 2,
  "distance": 0,
  "drive": 2,
  "wear": 0
}
link