TheDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/devdavco/backend_1/llms.txt
Use this file to discover all available pages before exploring further.
GET /reserva/all endpoint returns every reservation record stored in the database as a flat JSON array. This is a read-only, unauthenticated query — no parameters are required. The response includes the full Reserva object for each booking, including all three timestamps, the current estado, the associated usuarioId and espacioId, and the optimistic-locking version counter.
Parameters
No path parameters, query parameters, or request body are required for this endpoint.Request
Response
Returns200 OK with a JSON array of Reserva objects.
Response fields
Unique auto-generated identifier for the reservation.
ID of the user who made the booking.
ID of the coworking space that was reserved.
Start time of the reservation in
yyyy-MM-dd HH:mm format.The time the user’s session ends, in
yyyy-MM-dd HH:mm format.Absolute end of the reserved slot including the cleaning buffer, in
yyyy-MM-dd HH:mm format.Current status of the reservation. One of
confirmada, pendiente, or cancelada.Optimistic-locking version counter. Incremented automatically by JPA on each successful write.