TrackerHub
  1. Docs
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
      • Config
      • Config
      • Config
    • Healthcheck
      GET
  1. Docs

02. Authentication

Authentication with Api Gateway#

No request reaches the tracker-hub service without first passing through the Api Gateway.

Authentication Process#

Authentication is handled by the gateway using an API Key. The client simply needs to include the API Key in the request header.
Example authentication
curl --request GET \
  --url https://api.exati.com.br/tracking/read/healthcheck \
  --header 'Accept: application/json'
  --header 'apikey: YOUR_API_KEY_HERE'
Previous
01. Project Overview
Next
03. Error Handling