> 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/user/company-features/create-company-client-secret.md).

# Create Company Client Secret

```
mutation (
    $companyId: ID!
    $description: String
  ) {
    createCompanyClientSecret (
      companyId: $companyId
      description: $description
    ) {
      clientId
      clientSecret
      description
    }
  }

```
