> For the complete documentation index, see [llms.txt](https://docs.tnid.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tnid.com/api-reference/002_company/016_client_secrets/002__list_paginated_client_secrets.md).

# List Client Secrets (Paginated)

GraphQL endpoint: `/company`

Lists the calling company's client secrets, most-recent first, cursor-paginated. Pass `paginationInfo.nextCursor` back as `cursor` to fetch the next page.

## Query

```graphql
query ($limit: Int, $cursor: String) {
  paginatedClientSecrets(limit: $limit, cursor: $cursor) {
    paginationInfo {
      limit
      nextCursor
    }
    records {
      id
      clientId
      description
    }
  }
}

```

## Variables

```json
{}
```

## Response

```json
{
  "data": {
    "paginatedClientSecrets": {
      "paginationInfo": {
        "limit": 20,
        "nextCursor": null
      },
      "records": [
        {
          "clientId": "client_id_1",
          "description": "description client_secret_2",
          "id": "00000000-0000-4000-8000-000000000001"
        },
        {
          "clientId": "client_id_3",
          "description": "description client_secret_4",
          "id": "00000000-0000-4000-8000-000000000002"
        },
        {
          "clientId": "client_id_5",
          "description": "description client_secret_6",
          "id": "00000000-0000-4000-8000-000000000003"
        }
      ]
    }
  }
}
```
