Parameters
| Name | Type | Required? |
|---|---|---|
account_id | text | yes |
user_id | text | |
email_address | text |
Use
Remove a user from the provided account
Only a user_id OR email_address can be provided (not both)
Example
mutation MyMutation {
removeAccountUser(accountId: "123abc", emailAddress: "[email protected]") {
id
}
}