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
This method is responsible for reading the client's configured parameters.

Request

Body Params application/json

Example
{}

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 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

Example
[
    {
        "idConfig": 1,
        "idClient": 1,
        "minStopMinutes": 100,
        "maxStopSpeedKmh": "1",
        "maxStopDistanceMeters": 50,
        "minMovementSpeedKmh": "2",
        "minMovementDistanceMeters": 100,
        "gapThresholdSeconds": 300
    }
]
Modified at 2025-02-25 19:51:15
Previous
Config
Next
Healthcheck