Delete an IntegrationConnection
Delete an Integration Connection by ID.
⚠️ Workflows using the Integration Connection will not function properly after the Connection is deleted
Method Signature
deleteIntegrationConnection(string $id): void
Parameter
Parameter | Type | Description |
---|---|---|
$id | string | The id of the Integration Connection to delete |
Example
<?php
/*
* This example demonstrates deleting an Integration Connection by ID
*/
require_once(__DIR__ . './vendor/autoload.php');
use Catalytic\SDK\CatalyticClient;
$catalytic = new CatalyticClient();
$catalytic->integrations()->deleteIntegrationConnection('0e10cf89-dcb0-45e5-80ea-791693573dd1');
Updated almost 3 years ago