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

Traces

PreviousVehiclesNextTrailers

Last updated 1 year ago

Was this helpful?

๐Ÿ“š

Create one or many traces

post

This will create one or many traces with the provided license plate number.

In the endpoint's URL, you must replace {vendor} by the name given to you by your Dashdoc project manager.

All vehicles specified in the request must exist in Dashdoc with the provided license plate, otherwise the request will return a 400 error.

Authorizations
Body
license_platestring ยท max: 200Required

License plate number

Example: AB123CD
countrystringOptional

Country code of the license plate

Example: FR
timestringOptional

Timestamp at which the trace was generated. ISO-8601 format.

Example: 2022-02-01T08:00:00Z
mileageintegerOptional

Mileage expressed in kilometers

Example: 123
latitudenumberOptional

Latitude of the position of the vehicle

Example: 42.2
longitudenumberOptional

Longitude of the position of the vehicle

Example: 2.3522
Responses
201Success
application/json
post
POST /api/v4/telematics/traces/{vendor}/ HTTP/1.1
Host: api.dashdoc.eu
Authentication: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 121

{
  "license_plate": "AB123CD",
  "country": "FR",
  "time": "2022-02-01T08:00:00Z",
  "mileage": 123,
  "latitude": 42.2,
  "longitude": 2.3522
}
201Success
{
  "pk": 17293,
  "license_plate": "AB123CD",
  "country": "FR",
  "time": "2022-02-01T08:00:00Z",
  "mileage": 123,
  "latitude": 42.2,
  "longitude": 2.3522
}