# Get a user

Retrieves the details of a single user by their unique user_id. The response includes the user's name, email, role, and timestamps.

Endpoint: GET /users/{user_id}
Version: 1.0.0
Security: basicAuth

## Path parameters:

  - `user_id` (integer, required)
    The unique ID of the user to retrieve
    Example: 836499

## Response 200 fields (application/json):

  - `http` (integer)
    Example: 200

  - `user_id` (integer)
    Example: 836499

  - `role_id` (string)
    Role assigned to the user:
- "1" = User
- "2" = Admin
- "3" = Super-Admin
    Enum: "1", "2", "3"

  - `user_name` (string)
    Example: "Abby Loves Signable"

  - `user_email` (string)
    Example: "abby+010725@signable.co.uk"

  - `user_added` (string)
    Example: "2025-07-01T08:40:38+0000"

  - `user_last_updated` (string)
    Example: "2025-07-07T07:57:54+0000"


