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

# List Resellers

> Returns a list of resellers for the specified account

## Path Parameters

<ParamField path="accountId" type="string" required>
  The account ID to list resellers for
</ParamField>

## Query Parameters

<ParamField query="external_id" type="string">
  Filter by external ID to find a specific reseller
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.telzino.com/v1/accounts/account-123/resellers" \
    -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
  ```

  ```javascript JavaScript theme={null}
  const accountId = 'account-123';

  const response = await fetch(
    `https://api.telzino.com/v1/accounts/${accountId}/resellers`,
    { headers: { 'Authorization': 'Bearer YOUR_ACCESS_TOKEN' } }
  );

  const resellers = await response.json();
  ```

  ```python Python theme={null}
  import requests

  account_id = 'account-123'

  response = requests.get(
      f'https://api.telzino.com/v1/accounts/{account_id}/resellers',
      headers={'Authorization': 'Bearer YOUR_ACCESS_TOKEN'}
  )

  resellers = response.json()
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "data": [
      {
        "id": "reseller-123",
        "account_id": "account-123",
        "name": "Test Reseller",
        "external_id": "external-reseller-123",
        "created_at": "2024-01-15T10:30:00Z"
      }
    ]
  }
  ```

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