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

# List Collection's Clients

> List all clients with access to a collection (admin only)

## Authentication

<ParamField header="Authorization" type="string" required>
  Bearer token: `Bearer <admin_token>`
</ParamField>

## Path Parameters

<ParamField path="collection_id" type="string" required>
  The collection ID (UUID)
</ParamField>

### Example Request

```bash theme={null}
curl https://api.sari-platform.com/api/access/collections/550e8400-e29b-41d4-a716-446655440000/clients \
  -H "Authorization: Bearer <admin_token>"
```

## Response

Returns all clients with access to the specified collection.

```json theme={null}
[
  {
    "client_id": "client-uuid-1",
    "email": "user@example.com",
    "full_name": "John Doe",
    "company_name": "Acme Corp",
    "granted_at": "2024-01-15T10:00:00Z"
  },
  {
    "client_id": "client-uuid-2",
    "email": "jane@company.com",
    "full_name": "Jane Smith",
    "company_name": "Tech Inc",
    "granted_at": "2024-01-16T14:00:00Z"
  }
]
```

## Errors

| Status | Description              |
| ------ | ------------------------ |
| 401    | Invalid or expired token |
| 403    | Admin access required    |
| 404    | Collection not found     |
