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
DELETE
/tracker
Tracker
This method is responsible for deleting trackers, and is only allowed if no other entities are associated with it.

Request

Body Params application/json
idTracker
integer 
optional
The tracker ID Identifier
>= 1
imei
string 
optional
The tracker IMEI code
<= 15 characters
Example
{
    "idTracker": 6,
    "imei": "123abc456"
}

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 DELETE 'https://api.exati.com.br/tracking/read/tracker' \
--header 'Content-Type: application/json' \
--data-raw '{
    "idTracker": 6,
    "imei": "123abc456"
}'

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
🟠422Parameter Error
Previous
Tracker
Next
Tracker