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

void Delete(string id);
async Task DeleteAsync(string id);

Parameters

ParameterTypeDescription
idstringThe id of the Integration to delete

Example

/*
 * This example demonstrates deleting an Integration by ID
 */
using Catalytic.Sdk.Entities;

namespace Catalytic.Sdk.Examples
{
    class Program
    {
        static void Main(string[] args)
        {
            var catalytic = new Catalytic.Sdk.CatalyticClient(AccessToken.Default);
            await catalytic.Integrations.DeleteAsync("CUSTOM_INTEGRATION_ID");
        }
    }
}