Integrations
Mutation
revokeIntegration — Returns boolean
Scopes Required: modify_integrations
This mutation allows you to revoke your own integration from a Vendor
| Arguments | Type | Description |
|---|---|---|
|
id |
String |
The ID of the integration to revoke (if empty it revokes the current integration) |
Example Mutation
mutation RevokeIntegration($id: String) {
revokeIntegration(id: $id)
}
# Example variables
{
"id": "<ID>"
}