Authentication
JWT bearer tokens and company-scoped API keys. Validated against tenant, scope, and key lifecycle.
- login & JWT issuance
- JWT + API key dual auth
Enterprise APIs for the modern field operation. Satellite tracking, task orchestration, address resolution, and operational reporting — designed for integration teams that ship fast and sleep well.
JWT bearer tokens and company-scoped API keys. Validated against tenant, scope, and key lifecycle.
10 endpoints for devices, positions, drivers, mobile messaging, and high-throughput GPS data ingestion for real-time tracking.
8 endpoints to create tasks in batch, update, cancel, list with dynamic fields, and pull photos and signed form PDFs.
25 lookup endpoints to resolve the real IDs your integration needs before creating anything — no guessing, no hardcoded codes.
5 endpoints to turn an address into coordinates and back. Billed per resolved request — autocomplete, quota checks, and cache hits are free.
21 report endpoints across satellite tracking, field operations, mobile personnel, and platform activity.
6 GeneXus-compatible services that keep the original request and response contracts, so an existing integration only changes its base URL.
Push task completions and fleet activity into SAP, Oracle, or a custom ERP in real time, and pull the catalogs you need to keep both sides speaking the same IDs.
Power mobile and web field-worker apps with task assignment, GPS position updates, digital form submissions, and photo attachments.
Build executive-level visibility with 21 report endpoints — task detail, alerts, AVL tracking, live crew positions, and mobile personnel activity.
Move an existing GeneXus Despacho integration onto the current platform without rewriting it: same request and response contracts, new base URL, up-to-date data.
Ingest high-throughput GPS and sensor data from field devices, expose live positions, and trigger geofence and idle alerts for assets in motion.
Turn a free-text address into coordinates, check which zone and coverage it falls into, and create the task already positioned on the map.
Login, attach your API key, and you're creating tasks, reading fleet positions, or pulling reports. No SDK required — every endpoint speaks JSON over HTTPS.
# 1. authenticate
POST /apidev/v1/login
tenant: acme.geotareas.com
# → { token, apiKey: "gtk_prod_..." }
# 2. create a task
POST /apidev/v1/tasks
Authorization: Bearer eyJhbG...
X-API-Key: gtk_prod_xxx
[{"origin_id":"91","account_id":"4412","address":"Av. Italia 2345"}]
# 3. fetch its attachments
GET /apidev/v1/tasks/88231/attachments
Authorization: Bearer eyJhbG...
X-API-Key: gtk_prod_xxx