Skip to main content

Build on GeoTareas

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.

Build with

APIs that cover the full field operation lifecycle

Authentication

JWT bearer tokens and company-scoped API keys. Validated against tenant, scope, and key lifecycle.

  • login & JWT issuance
  • JWT + API key dual auth

Fleet & Telemetry

10 endpoints for devices, positions, drivers, mobile messaging, and high-throughput GPS data ingestion for real-time tracking.

  • devices CRUD & position.last
  • drivers CRUD & telemetry ingestion

Tasks

8 endpoints to create tasks in batch, update, cancel, list with dynamic fields, and pull photos and signed form PDFs.

  • batch create, update & cancel
  • list & detail with dynamic fields
  • attachments & form PDFs

Catalogs

25 lookup endpoints to resolve the real IDs your integration needs before creating anything — no guessing, no hardcoded codes.

  • geography cascade: country → zone
  • origins, products & coverages
  • forms, shifts & dynamic fields

Geocoding

5 endpoints to turn an address into coordinates and back. Billed per resolved request — autocomplete, quota checks, and cache hits are free.

  • forward, reverse & autocomplete
  • our own maps for internal lookups
  • quota check before you spend

Reports

21 report endpoints across satellite tracking, field operations, mobile personnel, and platform activity.

  • 9 AVL (km, geofence, trips, speed...)
  • 5 GT operations (tasks, alerts, live location...)
  • 4 CPM + 3 general

Legacy Despacho

6 GeneXus-compatible services that keep the original request and response contracts, so an existing integration only changes its base URL.

  • same payloads in, same payloads out
  • runs on the current platform data
Integration patterns

What teams build with GeoTareas APIs

ERP & Back-office Sync

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.

TasksCatalogsReports

Custom Field Apps

Power mobile and web field-worker apps with task assignment, GPS position updates, digital form submissions, and photo attachments.

FleetTasksTelemetry

Operations Dashboards

Build executive-level visibility with 21 report endpoints — task detail, alerts, AVL tracking, live crew positions, and mobile personnel activity.

Reports — AVLReports — GTReports — CPM

Legacy Integration Migration

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.

Legacy DespachoTasksGeocoding

IoT & Asset Tracking

Ingest high-throughput GPS and sensor data from field devices, expose live positions, and trigger geofence and idle alerts for assets in motion.

TelemetryFleetReports — AVL

Address & Coverage Resolution

Turn a free-text address into coordinates, check which zone and coverage it falls into, and create the task already positioned on the map.

GeocodingCatalogsTasks

From auth to live data
in three requests

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.

1Authenticate — get JWT + API key
2Create a task
3Track it and pull its attachments
Quickstart guide
# 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
70
Endpoints
6
Domains
REST
Protocol
JWT+Key
Security