# Get User

Retrieve user information

Endpoint: GET /user/{userId}
Version: 2.0.0
Security: bearerToken

## Path parameters:

  - `userId` (string, required)
    User ID

## Response 200 fields (application/json):

  - `userId` (string)
    Unique identifier for the user (UUID)

  - `username` (string)
    User's email address

  - `email` (string)
    User's email address

  - `givenName` (string)
    User's first name

  - `familyName` (string)
    User's last name

  - `mfa` (boolean)
    Whether multi-factor authentication is enabled

  - `createdAt` (string)
    When the user account was created

  - `updatedAt` (string)
    When the user account was last updated

