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

void DeleteIntegrationConnection(string id);
async Task DeleteIntegrationConnectionAsync(string id);

Parameters

ParameterTypeDescription
idstringThe id of the Integration Connection to delete

Example

/*
 * This example demonstrates deleting an Integration Connection 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.DeleteIntegrationConnectionAsync("INTEGRATION_CONNECTION_ID");
        }
    }
}