Get an user by ID
GET/platform/solutions/api/v1/users/{userId}
Retrieve details of a single application user by their unique ID.
Usage
- Provide the
userIdof the target user to fetch detailed information.
Parameters
userId(Guid, required): the unique identifier of the user to retrieve.
Responses
200 OK: successfully returns the user details.403 Forbidden: caller does not have permission to view this user.404 Not Found: the user with the specified ID does not exist.
Security
- This API requires authentication.
- Accessible only to users with appropriate roles.
Request
Responses
- 200
- 400
- 401
- 403
- 404
- 500
- 501
OK
Bad Request
Unauthorized
Forbidden
Not Found
Internal Server Error
Not Implemented