revokeConnection
Terminate integration with external services by revoking access for a specific connection using namespace, connection, and tenant IDs.
Instructions
Revokes access for a specific connection, removing the integration with the external service.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
connectionId | Yes | ||
namespaceId | No | ||
tenantId | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"connectionId": {
"type": "string"
},
"namespaceId": {
"type": "string"
},
"tenantId": {
"type": "string"
}
},
"required": [
"connectionId"
],
"type": "object"
}