Vehicles

Deprecated

Create a telematics vehicle

post

This will create a vehicle with the provided license plate number and telematics id, in order to collect and process telemactics data from this vehicle during transports. This is possible with Trimble.

If there is already a vehicle with the provided license plate, its telematics_id will be updated. In this case the return status will be 200.

Authorizations
Body
telematicsstring · enumRequiredPossible values:
license_platestringRequiredExample: AB123CD
telematics_idstringRequired

ID of the vehicle in the telematics system

Responses
201Success
application/json
post
POST /api/v4/telematics/vehicles/ HTTP/1.1
Host: api.dashdoc.eu
Authentication: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 73

{
  "telematics": "trimble",
  "license_plate": "AB123CD",
  "telematics_id": "text"
}
201Success
{
  "telematics": "trimble",
  "license_plate": "AB123CD",
  "telematics_id": "text"
}

Last updated

Was this helpful?