TrackerHub
  1. Device
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
        POST
      • List Device
        POST
      • Device
        GET
      • Device
        DELETE
      • Device
        PATCH
    • Position
      • Position
      • Position
      • Position
      • Create Position
      • Position :vendor
      • latest-position
      • latest-positions
      • latest-positions :deviceId
    • Configuration
      • Config
      • Config
      • Config
      • Config
    • Healthcheck
      GET
  1. Device

Device

Production reader
https://api.exati.com.br/tracking/read
Production reader
https://api.exati.com.br/tracking/read
GET
/device
Device
This method is responsible for reading devices.

Request

Body Params application/json
object {0}
Example
{}

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 GET 'https://api.exati.com.br/tracking/read/device' \
--header 'Content-Type: application/json' \
--data-raw '{}'

Responses

🟢200OK
application/json
Example of a Device List response
Body
array of:
id_device
integer 
optional
The Device ID
id_instance
integer 
optional
The Client Instance ID
id_client_vendor
integer 
optional
The Client-Vendor Link Identifier
id_tracker
integer 
optional
The tracker ID
id_worksite
integer 
optional
The worksite ID this device belongs to
id_team
integer 
optional
The worksite ID this device is assigned to
device_name
string 
optional
The Device name
id_device_type
integer 
optional
The Device Type ID
device_code
string  | null 
optional
The Device Code
device_uuid
string  | null 
optional
The Device unique identifier
status
string 
optional
The Device status
Example
{
    "id_device": 2,
    "id_instance": 123,
    "id_client_vendor": 1,
    "id_tracker": 3,
    "id_worksite": 6,
    "id_team": 6,
    "device_name": "testing device",
    "id_device_type": 3,
    "device_code": "testing",
    "device_uuid": "fef6b5dd-e53b-479d-86a5-4f155a9b65ba",
    "status": "active"
}
Previous
List Device
Next
Device