Documentation Index
Fetch the complete documentation index at: https://www.plain.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
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
mutation removeMembersFromTier($input: RemoveMembersFromTierInput!) {
removeMembersFromTier(input: $input) {
error {
message
type
code
fields {
field
message
type
}
}
}
}
{
"input": {
"memberIdentifiers": [
{
"tenantId": "te_123"
},
{
"companyId": "co_123"
}
]
}
}