API Registro Pendientes follows a straightforward request cycle: authenticate once to receive a JWT token, then include that token in every subsequent request. This guide walks you through authentication, creating a work order, and checking its status — all from the command line.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/CLINTONARMANDO/apiregistropendientes/llms.txt
Use this file to discover all available pages before exploring further.
Prerequisites
Before you begin, make sure you have the following:- Java 21 or later installed on your machine (required only if you are running the server locally)
- A running API instance — either a local server on
http://localhost:8080or a remote deployment URL provided by your team - User credentials (DNI and password) issued by your system administrator
If you need credentials or access to a running instance, contact your ISP administrator. User accounts are managed via the
/api/usuarios endpoint and require the REGISTRAR_PENDIENTE permission to create work orders.Steps
Authenticate and obtain a token
Send your DNI and password to A successful response looks like this:Copy the
POST /auth. The response contains a JWT token you will use for all subsequent requests.token value — you will pass it in the Authorization header for every subsequent request.Create a work order
Send a The response returns the newly created work order with its assigned
POST /api/pendientes request with the work order details. Replace the Authorization header value with the token you received in step 1.id and an initial state of REGISTRADO.The
tipo field accepts: INSTALACION_INTERNET, AVERIA, INSTALACION_CAMARAS, RECOJO_DISPOSITIVOS, and TRASLADO. The prioridad field accepts BAJA, MEDIA, URGENTE, and MUY_URGENTE. See Core Concepts for details on all field values.What’s next
You have authenticated, created a work order, and retrieved its details. From here, you can:Authentication reference
Understand token lifetime, validation, and how to handle auth errors.
Work order states
Learn the full state machine:
REGISTRADO → ASIGNADO → EN_PROGRESO → FINALIZADO.Permissions model
See which permissions are required for each operation and how roles are configured.
API reference
Full endpoint documentation with all request parameters and response schemas.