Parameters
Name | Type | Required? |
---|---|---|
account_id | text | yes |
role_name | text | yes |
user_id | text | |
email_address | text |
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
}
}