Skip to main content
Using TypeScript? Check out our GraphQL SDK for a fully typed client.
You can remove companies and tenants from the tiers they are part of manually in the UI or via the API. For this mutation you need the following permissions:
  • tierMembership:read
  • tierMembership:delete
Query
mutation removeMembersFromTier($input: RemoveMembersFromTierInput!) {
  removeMembersFromTier(input: $input) {
    error {
      message
      type
      code
      fields {
        field
        message
        type
      }
    }
  }
}
Variables
{
  "input": {
    "memberIdentifiers": [
      {
        "tenantId": "te_123"
      },
      {
        "companyId": "co_123"
      }
    ]
  }
}