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 /usuarios/eliminar/{id} endpoint permanently removes a user account from the CoworkingBooking system. The operation first looks up the user by their ID, then deletes the record from the database. On success, the server responds with a plain text confirmation message. This action is irreversible — there is no soft-delete or trash mechanism.
Path parameters
The integer primary key of the user to delete. Must match an existing user record. If no user is found for this ID, the service throws a
RuntimeException which results in a 500 error (see warnings below).Request
Response
200 OK
Returns a200 OK status with the following plain text body — no JSON wrapper:
The response body is a plain text string, not a JSON object. Do not attempt to parse it as JSON. The
Content-Type header will reflect text/plain.