Parameters

NameTypeRequired?
account_idtextyes
role_nametextyes
user_idtext
email_addresstext

Use

Modify a user in the provided account to the provided role

Only a user_id OR email_address can be provided (not both)

Example

mutation MyMutation {
	modifyAccountUser(accountId: "123abc", roleName: "admin", emailAddress: "[email protected]") {
   	id
	}
}