API Registro Pendientes is a Spring Boot REST API built for internet service providers to manage field work orders (pendientes), track technician activity, record payments, and push real-time notifications to mobile and web clients. All endpoints are secured with JWT bearer tokens and documented via Swagger UI.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.
Quickstart
Make your first authenticated API call in minutes.
Authentication
Learn how to obtain and use JWT bearer tokens.
Core Concepts
Understand work orders, states, and permissions.
API Reference
Full endpoint documentation with request and response schemas.
What you can do
Manage work orders
Create, assign, track, and close field work orders across five types: fault repair, internet installation, camera installation, device pickup, and relocation.
Track technician time
Open and close time-tracking sessions per technician per work order, with start/end timestamps and session descriptions.
Real-time notifications
Subscribe to WebSocket topics over STOMP for instant updates when work orders are assigned, postponed, or completed.
Upload field notes
Technicians can attach notes and photos to work orders; images are uploaded via multipart form and served statically.
How it works
Assign a technician
Call
PUT /api/pendientes/{id}/asignar with the employee ID to move the order to ASIGNADO state.All endpoints except
/auth/** and /app/** require a valid JWT bearer token in the Authorization header. See Authentication for details.