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
Parameter | Type | Description |
---|---|---|
id | string | The 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");
}
}
}
Updated about 3 years ago