Remove Profile Permissions
Mutation to delete subaccounts permissions
Example
mutation removeProfilePermissions {
removeProfilePermissions(input: { profileEmail: "[email protected]", subaccount: "subaccount_name" }) {
boolean
}
}
Response
{
"data": {
"removeProfilePermissions": {
"boolean": true
}
}
}
Arguments
input
(RemoveProfilePermissionsInput!)
The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.
type RemoveProfilePermissionsInput {
clientMutationId: String
profileEmail: String!
subaccount: String!
}