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

Config

Production reader
https://api.exati.com.br/tracking/read
Production reader
https://api.exati.com.br/tracking/read
GET
/config
Configuration
This method is responsible for reading the client's configured parameters.

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/config' \
--header 'Content-Type: application/json' \
--data-raw '{}'

Responses

🟢200OK
application/json
Example of a Configuration response
Body
array of:
idConfig
integer 
optional
The configuration Identifier
idClient
integer 
optional
The Client ID
minStopMinutes
integer 
optional
Stop threshold parameter in minutes
maxStopSpeedKmh
string 
optional
Stop threshold parameter in Kilometers per hour
maxStopDistanceMeters
integer 
optional
Stop threshold parameter in Meters
minMovementSpeedKmh
string 
optional
Movement threshold parameter in Kilometers per hour
minMovementDistanceMeters
integer 
optional
Movement threshold parameter in meters
gapThresholdSeconds
integer 
optional
Gap threshold parameter in seconds
Example
[
    {
        "idConfig": 1,
        "idClient": 1,
        "minStopMinutes": 100,
        "maxStopSpeedKmh": "1",
        "maxStopDistanceMeters": 50,
        "minMovementSpeedKmh": "2",
        "minMovementDistanceMeters": 100,
        "gapThresholdSeconds": 300
    }
]
Previous
Config
Next
Healthcheck