Parameters

NameTypeRequired?
account_idtextyes
role_nametextyes
user_idtext
email_addresstext

Use

Adds a user to the provided account with the provided role

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

Example

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