Parameters

NameTypeRequired?
account_idtextyes
user_idtext
email_addresstext

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
	}
}