> ## Documentation Index
> Fetch the complete documentation index at: https://studio.chat-atp.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# List agent users

> List users known to an agent

<ParamField path="agent_id" type="integer" required>
  Agent ID.
</ParamField>

## SDK

<CodeGroup>
  ```typescript TypeScript theme={null}
  const users = await client.agentUsers.list(7);
  ```

  ```python Python theme={null}
  users = await client.agent_users.list(7)
  ```
</CodeGroup>
