> ## Documentation Index
> Fetch the complete documentation index at: https://docs.r28.ai/charter/llms.txt
> Use this file to discover all available pages before exploring further.

# users_retrieve

> Get one user by ID.

<div className="tool-route"><span className="tool-row-method" data-method="GET">GET</span><code>{"https://api.notion.com/v1/users/{userId}"}</code></div>

```python notion_users_retrieve.py theme={null}
from charter.packs import notion

result = await notion.users_retrieve.ainvoke({"userId": ...})
```

<Note>
  Requires `Read user information`.
</Note>

## Path parameters

<div className="reference-table">
  | Field                                                          | Type     | Description                     |
  | -------------------------------------------------------------- | -------- | ------------------------------- |
  | `userId` <span className="required" title="required">\*</span> | `string` | The ID of the user to retrieve. |
</div>
