> 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/001__list_client_secrets.md).

# List Client Secrets

GraphQL endpoint: `/company`

Lists the calling company's client secrets, most-recent first. The plaintext secret value is not included; it is only returned once, at creation time.

## Query

```graphql
query {
  clientSecrets {
    id
    clientId
    description
    insertedAt
  }
}

```

## Variables

```json
{}
```

## Response

```json
{
  "data": {
    "clientSecrets": [
      {
        "clientId": "client_id_second",
        "description": "second",
        "id": "00000000-0000-4000-8000-000000000001",
        "insertedAt": "2026-01-15T09:00:01"
      },
      {
        "clientId": "client_id_first",
        "description": "first",
        "id": "00000000-0000-4000-8000-000000000002",
        "insertedAt": "2026-01-15T09:00:00"
      }
    ]
  }
}
```
