The Get User endpoint fetches a single registered user by their internal numeric identifier. This is useful when you already hold a user ID — for example, from an event membership record or a participant listing — and need to resolve the corresponding username and email. If the supplied ID does not match any record in the database, the server returns aDocumentation 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.
404 Not Found response rather than an empty object.
Endpoint
Path parameters
The user’s numeric database ID. This is the auto-generated primary key assigned when the account was created. Must be a positive integer.
Response
Returns a singleUsuarioSalidaDTO object on success.
The user’s chosen username. Between 6 and 20 characters.
The user’s registered email address.
Example response
Error responses
| HTTP status | Condition |
|---|---|
404 Not Found | No user with the supplied id exists in the database. |