# Mutations / Integrations

# 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**

```graphql
mutation RevokeIntegration($id: String) {
    revokeIntegration(id: $id)
}

# Example variables
{
    "id": "<ID>"
}
```