# Get user

This endpoint allows you to retrieve a user by their ID.

Endpoint: GET /v1/businesses/{client_id}/users/{user_id}
Version: v1
Security: BearerAuth

## Path parameters:

  - `client_id` (integer, required)
    The ID of the business.
    Example: 123

  - `user_id` (integer, required)
    The ID of the user.

## Response 200 fields (application/json):

  - `id` (integer)
    The ID of the user.
    Example: 123

  - `first_name` (string)
    The first name of the user.
    Example: "John"

  - `last_name` (string)
    The last name of the user.
    Example: "Doe"

  - `name` (string)
    The full name of the user or the display name if the user has set one.
    Example: "John Doe"

  - `email` (string)
    The email of the user.
    Example: "john.doe@example.com"

  - `role` (string)
    The role of the user.
    Example: "Team Member"

  - `is_deleted` (boolean)
    Whether the user is deleted.

  - `created` (string)
    The date and time when the user was created in UTC.
    Example: "2024-01-01T00:00:00Z"

  - `updated` (string)
    The date and time when the user was last updated in UTC.
    Example: "2024-01-01T00:00:00Z"


## Response 401 fields

## Response 403 fields

## Response 404 fields
