Delete an Integration

Delete a custom Integration and its Connections by ID.

⚠️

Heads up!

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

Method Signature

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

Parameters

ParameterTypeDescription
idstringThe id of the Integration to delete

Example

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

const catalytic = new CatalyticClient();

await catalytic.integrations.delete('YOUR_INTEGRATION_ID');