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.

Retrieve all inspections stored in the system, each with full relational detail and the complete list of individual checklist results. This endpoint is exempt from IP access restrictions and can be called from any origin. Method: GET Path: /api/dashboard/inspecciones/ Auth: Not required (IP restriction exempt)

Response

Array of inspection objects.
id
integer
Inspection ID
fecha
string
Date in YYYY-MM-DD format
horaInicio
string
Start time HH:MM
horaFin
string
End time HH:MM
division
string
Division name
area
string
Area name
zona
string
Zone name
equipo
string
Equipment name
owner
string
Inspector LDAP username
observaciones
string
General observations
tecnicos
array
List of checklist results.

Example

curl http://<host>:8080/api/dashboard/inspecciones/
[
  {
    "id": 42,
    "fecha": "2025-01-15",
    "horaInicio": "08:00",
    "horaFin": "08:45",
    "division": "División Norte",
    "area": "Producción",
    "zona": "Zona 1",
    "equipo": "Compresor A1",
    "owner": "ac17157",
    "observaciones": "",
    "tecnicos": [
      {"descripcion": "Oil level check", "estado": "OK", "comentario": "", "es_critico": false},
      {"descripcion": "Belt tension", "estado": "NOK", "comentario": "Replacement needed", "es_critico": true}
    ]
  }
]

Build docs developers (and LLMs) love