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

Was this helpful?