Dashdoc API Documentation
  • ๐Ÿ‘‹GET STARTED
    • Introduction
    • Core API concepts
      • Authentication
      • External identifiers
      • Date and time formats
      • Requests and filters
      • Pagination
      • HTTP status codes
      • Rate limiting
      • Send documents
    • Understand the data model
      • Transport - Segment - Delivery
      • Origin/Destination sites
      • Company - Address
      • Trucker
  • ๐Ÿ”INTEGRATE YOUR SOFTWARE
    • How to integrate your software with Dashdoc
    • Setup
      • Create a sandbox account
      • Get the API token
      • Make an authenticated request
  • ๐ŸŽ“USE CASES AND TUTORIALS
    • Shippers (ERP, WMS) ๐Ÿ”€
      • Create a simple transport as a shipper
      • Manage the address book
    • Carriers ๐Ÿš›
      • Create a simple transport as a carrier
      • Create a multi-deliveries transport as a carrier
      • Create a break in a transport (segment)
      • Charter whole or part of a transport - Affrรจtement
      • Manage truckers
      • Create and follow rental orders
      • Handle Qualimat transports
    • Retrieve transport data ๐Ÿ
      • Get last updated transports (Poll vs. webhooks)
      • Get status updates with dates and times
      • Get load information (quantity, weight...)
      • Get mileage from transport
      • Get documents and photos with their type
      • Get observations from trucker / signatory
      • Get information about washings
      • Filter transports created by your truckers and partners
    • Invoicing ๐Ÿ’ฐ
    • Dashdoc Wam โ™ป๏ธ
      • Create a Waste Form
      • Sign a Waste Form as Organizer
      • Create a Transport for a Waste Form
      • Find the transport linked to a waste form
  • โ˜๏ธWEBHOOKS
    • Webhooks
  • ๐Ÿ“ฑMOBILE APP
    • Use the mobile app to simulate transports
  • ๐Ÿ’กUPGRADES
    • Upgrading API from v3 to v4
  • ๐Ÿ“šAPI Reference
    • API v4 Reference
    • List of all endpoints for v4
      • Addresses
        • Security Protocol
      • Adr Un Codes
      • Carbon Footprint
        • Transport Operation Categories
      • Companies
      • Contacts
        • Invite
      • Deliveries
        • Add Round
        • Cmrs
      • Dock Activities
        • Mark Loaded By Dock
        • Mark Unloaded By Dock
      • Invoices
        • Items
        • Mark Paid
        • Mark Not Paid
      • Managers
        • Invite
        • Me
        • Set Company
      • Manager Truckers
        • Lease
        • Generate Invite Code
        • Unavailability
      • Security Protocols
      • Segments
        • Assign
        • Break
        • Charter
      • Tracking Files
      • Sites
        • Mark Done
        • Enable Eta
      • Support Types
      • Supports Exchanges
      • Telematics
        • Vehicles
        • Traces
      • Trailers
        • Unavailability
      • Track Dechets
      • Transport Loading Plans
      • Transport Messages
      • Transports
        • Charter
        • Assign
        • Archive
        • Merge To Trip
        • Mark Done
        • Mark Invoiced
        • Mark Paid
        • Cancel
        • Confirm
        • Decline
        • Revenue Split
        • Cmrs
        • Effective Price Lines
        • Loads Constraints
      • Transport Status
      • Transport Templates
      • Scheduler
        • Trips
          • Set Name
      • Vehicles
        • Unavailability
      • Wam
        • Contacts
        • Forms
          • Sign As Organizer
          • Create Transport
          • Loads
        • Companies
          • Details
Powered by GitBook
On this page

Was this helpful?

  1. API Reference
  2. List of all endpoints for v4
  3. Telematics

Vehicles

PreviousTelematicsNextTraces

Last updated 1 year ago

Was this helpful?

๐Ÿ“š
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"
}