# Get

Launch stage: Beta

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

Fetches a user by its internal ID from the Databricks account
 that parents the calling workspace.

API scopes: identity

## Path parameters

- `user_id` (string, required)
  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"
}
```

