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/all endpoint returns every user account currently stored in the database as a JSON array. This is the quickest way to enumerate all registered members of the coworking platform — for example, to populate an admin dashboard or to verify newly created accounts. When no users exist the endpoint returns an empty array [].
Parameters
This endpoint accepts no path parameters, query parameters, or request body.Request
Response
200 OK
Returns a JSON array of Usuario objects. Each element in the array has the following fields: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".