Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/AC42027/Backend-produccion/llms.txt

Use this file to discover all available pages before exploring further.

Areas and zones make up the mid and lower levels of the plant location hierarchy. Both endpoints return simple id/nombre lists — all records are returned with no filtering.

GET /api/areas/

Method: GET   Path: /api/areas/   Auth: Session cookie required
curl -b cookies.txt http://<host>:8080/api/areas/
[
  {"id": 1, "nombre": "Producción"},
  {"id": 2, "nombre": "Mantenimiento"}
]

GET /api/zonas/

Method: GET   Path: /api/zonas/   Auth: Session cookie required
curl -b cookies.txt http://<host>:8080/api/zonas/
[
  {"id": 1, "nombre": "Zona 1"},
  {"id": 2, "nombre": "Zona 2"}
]
The API returns all areas and zones without filtering by parent. Resolve the full hierarchy using the IDs on equipment records.

Build docs developers (and LLMs) love