Legacy Despacho
This section documents the web services of the Legacy Despacho compatibility surface. These services preserve the same request and response contracts as the original GeneXus Despacho integration, so existing code continues working after pointing to the new domain.
How it works
The Legacy Despacho surface is a compatibility layer: the request/response contracts are
byte-for-byte the same as the GeneXus Despacho integration (object wrappers, field names,
casing, the WSAutorizacion block, and an always-HTTP 200 response carrying an error field
on failure). What changed is the engine behind them — these services run on the current
GeoTareas platform (the same tasks, accounts and catalogs you manage in the app today), not
the old Despacho database.
For an integrator this means: point your existing client to the new base route and keep your code unchanged — same payloads in, same payloads out — while your data lives in the up-to-date GeoTareas platform.
Base route
All services are available under:
POST /apidev/legacy/<WSName>
| Service | Route |
|---|---|
WSGetServicios | POST /apidev/legacy/WSGetServicios |
WSGetTareaMultimedia | POST /apidev/legacy/WSGetTareaMultimedia |
WSGeocoding | POST /apidev/legacy/WSGeocoding |
WSReverseGeocoding | POST /apidev/legacy/WSReverseGeocoding |
WSGetArchivosMultimedia | POST /apidev/legacy/WSGetArchivosMultimedia |
WSAltaServicio | POST /apidev/legacy/WSAltaServicio |
These six services are the whole Legacy Despacho surface. See the Service Matrix for the per-service breakdown.
Authentication
All services use the WSAutorizacion block embedded in the request body. No Authorization header is required.
{
"WSAutorizacion": {
"Guid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"Usuario": "usuario@empresa.com",
"Password": "contraseña"
}
}
Guid is the API key issued to your company. Usuario and Password are the credentials of the integration user.
Service availability
| Group | Status |
|---|---|
Tasks read (WSGetServicios) | Available |
Task multimedia (WSGetTareaMultimedia) | Available |
Geocoding (WSGeocoding, WSReverseGeocoding) | Available |
Multimedia files (WSGetArchivosMultimedia) | Available |
Task creation (WSAltaServicio) | Available |
See the Service Matrix for the per-service breakdown.