# Get

Launch stage: Beta

`GET /api/2.0/identity/accounts/{account_id}/users/{user_id}`

Fetches a user from the <Databricks> account by its internal ID.

API scopes: identity

## Path parameters

- `account_id` (string, optional)
  Required. The account ID for which the user is being fetched.
- `user_id` (string, optional)
  Required. Internal ID of the user in <Databricks>.

## Returns

Returns the User object.

## Response

```json
{
  "account_id": "string",
  "user_id": "string",
  "external_id": "string",
  "username": "string",
  "full_name": {
    "given_name": "string",
    "family_name": "string"
  },
  "account_user_status": "string"
}
```

