# Retrieve user entity by id This endpoint retrieves a user entity based on the provided user ID. It returns the user details in JSON format. The user ID must be specified in the URL path. Endpoint: GET /api/v3/users/{id} Version: 3.0.4 Security: OAuth2 ## Path parameters: - `id` (integer, required) The unique identifier of the user entity ## Response 200 fields (application/json): - `id` (integer) The unique identifier of the user - `firstName` (string) The first name of the user - `lastName` (string) The last name of the user - `username` (string) The username of the user - `enabled` (boolean) Indicates if the user is enabled - `jobTitle` (string) The job title of the user - `emailAddress` (string) The email address of the user - `telephoneNumber` (string) The telephone number of the user - `team` (object) Team assigned to the issue - `team.id` (integer) The unique identifier of the team - `team.teamName` (string) The name of the team