The List Users endpoint returns every registered user in the Spring Community platform as a JSON array. Because the response is shaped byDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/CristianRR94/springCommunity/llms.txt
Use this file to discover all available pages before exploring further.
UsuarioSalidaDTO, sensitive data such as password hashes, roles, and tokens are stripped before the array is returned — only the public-facing nombre and email fields are included. Use this endpoint to populate user directories, admin dashboards, or any view that requires a full enumeration of accounts.
Endpoint
Request parameters
This endpoint accepts no path parameters, query parameters, or request body.Response
Returns a JSON array ofUsuarioSalidaDTO objects. An empty array ([]) is returned when no users exist.
The user’s chosen username. Between 6 and 20 characters.
The user’s registered email address. Unique across all accounts.
Example response
Example request
Passwords and tokens are never included in the response. The API returns only
nombre and email — all other fields on the internal Usuario entity (password hash, role, JWT tokens, and associated participant profile) are excluded by the UsuarioSalidaDTO projection.