DELETEDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/Israel-Perez/Nuxt-Secure/llms.txt
Use this file to discover all available pages before exploring further.
/api/usuario/:id
Permanently removes the user record with the given id from the database. This is a hard delete — the row is removed with DELETE FROM usuario WHERE id = :id. There is no soft-delete or deactivation performed by this endpoint.
Path parameters
Primary key of the user to delete.
Response
true when the delete statement executes without error.Confirmation string. Always
"Eliminado" on success.The handler does not check whether the
id exists before executing the delete. If the id does not match any record, the statement runs without error and the response is still { success: true, message: "Eliminado" }.Examples
Success response
200