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

Tracker

Production reader
https://api.exati.com.br/tracking/read
Production reader
https://api.exati.com.br/tracking/read
POST
/tracker
Tracker
This method is responsible for creating new trackers, which are entities associated with tracked devices.

Request

Body Params application/json
trackerName
string 
required
The name for the tracker
<= 150 characters
trackerDesc
string 
optional
A description for the tracker
<= 200 characters
imei
string 
optional
The IMEI code of the tracker
<= 15 characters
status
string 
optional
The status of the tracker
<= 20 characters
Example
{
    "trackerName": "tracker 7",
    "trackerDesc": "tracker description",
    "imei": "123-ABC-4567",
    "status": "active"
}

Request 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 POST 'https://api.exati.com.br/tracking/read/tracker' \
--header 'Content-Type: application/json' \
--data-raw '{
    "trackerName": "tracker 7",
    "trackerDesc": "tracker description",
    "imei": "123-ABC-4567",
    "status": "active"
}'

Responses

🟢200OK
application/json
Example of a Successful response
Body
status
string 
optional
ok
message
string 
optional
Entity processed successfully
Example
{
    "status": "ok",
    "message": "Entity processed successfully"
}
🟠400Bad Request
🟠409409
Previous
Device Type
Next
Tracker