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.
DELETE /reserva/eliminar/{id} endpoint permanently removes a reservation record from the database. The service first fetches the record to confirm it exists — using orElseThrow — and then calls delete on the repository. On success the response body is the plain-text string "Reserva eliminada exitosamente" with an HTTP 200 OK status. This operation is irreversible; deleted reservations cannot be recovered through the API.
Path parameters
The integer primary key of the reservation to delete. Must correspond to an existing record in the
reservas table.Request
Response
Returns200 OK with a plain-text confirmation message.