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

# List Users

> List of users who can access the Advertiser's account in the admin portal. You can also view this on the Advertiser's Users page in the admin portal.

### Query Parameters

<ParamField query="limit" type="string" default="10">
  The maximum number of advertisers to return.  Must be between 1 and 20.
</ParamField>

<ParamField query="page" type="string" default="1">
  The page number of the results.
</ParamField>

### Path Parameters

<ParamField path="advertiserID" type="number" required={true}>
  The advertiser ID.
</ParamField>

### Response

<ResponseField name="advertiser_id" type="number">
  The advertiser ID.
</ResponseField>

<ResponseField name="email" type="string">
  The email address of the user.
</ResponseField>

<ResponseField name="created_at" type="string">
  A timestamp of when the user was created.
</ResponseField>

<ResponseField name="role" type="string">
  The role of the user. Currently, only `ADMIN` is supported.
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  [
      {
          "advertiser_id": 1,
          "email": "email@example.com",
          "created_at": "2020-01-01T00:00:00Z",
          "role": "ADMIN"
      }
  ]
  ```

  ```json 400 theme={null}
  {
      "error": "Page size must be between 1 and 20"
  }
  ```

  ```json 500 theme={null}
  {
      "error": "Internal server error"
  }
  ```
</ResponseExample>
