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 the ordered list of technical checklist questions for a specific category. Use these descriptions as keys in the tecnicos map when submitting an inspection. Method: GET Path: /api/preguntas/{categoria_nombre}/ Auth: Session cookie required

Path parameters

categoria_nombre
string
required
The exact category name, e.g. “Mecánico”. URL-encode spaces if needed.

Response

id
integer
Question ID
descripcion
string
Question text — use this as the key in the tecnicos request body
curl -b cookies.txt "http://<host>:8080/api/preguntas/Mec%C3%A1nico/"
[
  {"id": 1, "descripcion": "Oil level check"},
  {"id": 2, "descripcion": "Belt tension"},
  {"id": 3, "descripcion": "Pressure gauge reading"}
]
Questions are ordered by their orden field within the category. When building the inspection form, display them in the order returned.

Build docs developers (and LLMs) love