For the complete documentation index, see llms.txt. This page is also available as Markdown.

Create Company Client Secret

Create a company client secret using the below mutation.

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

Last updated