Delete an IntegrationConnection

Delete an Integration Connection by ID.

⚠️

Heads up!

Workflows using the Integration Connection will not function properly after the Connection is deleted

Method Signature

deleteConnection(id: string): Promise<void>;
deleteConnection(id: string, callback: (err?: Error) => any): void;

Parameters

ParameterTypeDescription
idstringThe id of the Integration Connection to delete

Example

/*
 * This example demonstrates deleting an Integration by ID
 */
const { CatalyticClient } = require('@catalytic/sdk');

const catalytic = new CatalyticClient();

await catalytic.integrations.deleteConnection('YOUR_INTEGRATION_CONNECTION_ID');