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

# authorizedUsers

> List authorized users on the caller's account.

List authorized users on the caller's account. All filters are optional and narrow the
results by email and/or phone. The target account is always resolved from the caller's
credentials - Bearer tokens use the token's accountId; Basic (API key) callers use the
application's configured operator account. OWNER role assignments are excluded from results.
Requires the VIEW\_SUBUSERS scope. Supports both Bearer and Basic auth.

```graphql theme={null}
query {
  authorizedUsers(
    email: String
    phone: String
  ): [AuthorizedUser]
}
```

## Arguments

<ParamField body="email" type="String">
  Filter by the email address of the authorized user.
</ParamField>

<ParamField body="phone" type="String">
  Filter by the phone number of the authorized user.
</ParamField>

## Returns

[`[AuthorizedUser]`](/api-reference/types/authorized-user) — Represents an authorized user on an account.
