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 /usuarios/{id} endpoint fetches a single user account identified by its integer primary key. Use this when you already know a user’s ID — for example, to display a profile page, pre-fill an edit form, or verify a user’s role before granting access to a resource.
Path parameters
The integer primary key of the user to retrieve. This value is assigned automatically when the user is created and is returned in every Usuario object under the
id field.Request
Response
200 OK
Returns a single Usuario object when a user with the given ID exists.The auto-generated primary key of the user.
The user’s full display name (max 100 characters).
The user’s unique email address (max 150 characters).
The password value stored for this user. See the security warning below.
The user’s role identifier — e.g.,
"admin" or "usuario".