TrackerHub
  1. Position
TrackerHub
  • Docs
    • 01. Project Overview
    • 02. Authentication
    • 03. Error Handling
    • 04. Input Operations
    • 05. GPS Position Workflow
  • API
    • Device Type
      • Device Type
    • Tracker
      • Tracker
      • Tracker
      • Tracker
      • Tracker
    • Device
      • Create Device
      • List Device
      • Device
      • Device
      • Device
    • Position
      • Position
        GET
      • Position
        PATCH
      • Position
        DELETE
      • Create Position
        POST
      • Position :vendor
        POST
      • latest-position
        GET
      • latest-positions
        POST
      • latest-positions :deviceId
        GET
    • Configuration
      • Config
      • Config
      • Config
      • Config
    • Healthcheck
      GET
  1. Position

Position

Production reader
https://api.exati.com.br/tracking/read
Production reader
https://api.exati.com.br/tracking/read
DELETE
/position
This method is responsible for deleting positions.

Request

Body Params application/json

Example
{
    "idDevice": 1,
    "latitude": 25.997053,
    "longitude": -97.155282,
    "createdAt": "2025-02-12 10:00:00.000 -0300",
    "velocity": 60.5,
    "odometer": 150350.75,
    "direction": 180.5,
    "altitude": null,
    "rpm": 2500,
    "fuelLevel": 75.5,
    "engineTemperature": 90.25,
    "distanceDelta": 1.25,
    "mobileSignalStrength": null,
    "gpsAccuracy": null,
    "batteryVoltage": 12.5,
    "engineStatus": true
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request DELETE 'https://api.exati.com.br/tracking/read/position' \
--header 'Content-Type: application/json' \
--data-raw '{
    "idDevice": 1,
    "latitude": 25.997053,
    "longitude": -97.155282,
    "createdAt": "2025-02-12 10:00:00.000 -0300",
    "velocity": 60.5,
    "odometer": 150350.75,
    "direction": 180.5,
    "altitude": null,
    "rpm": 2500,
    "fuelLevel": 75.5,
    "engineTemperature": 90.25,
    "distanceDelta": 1.25,
    "mobileSignalStrength": null,
    "gpsAccuracy": null,
    "batteryVoltage": 12.5,
    "engineStatus": true
}'

Responses

🟢200OK
application/json
Example of a Successful response
Body

Example
{
    "status": "ok",
    "message": "Entity processed successfully"
}
🟠400Bad Request
Modified at 2025-02-25 19:51:15
Previous
Position
Next
Create Position