Delete an Integration
Delete a custom Integration and its Connections by ID.
⚠️ Workflows using the Integration will not function properly after Integration is deleted
Method Signature
delete(string id): void
Parameters
Parameter | Type | Description |
---|---|---|
id | string | The id of the Integration to delete |
Example
<?php
/*
* This example demonstrates deleting an Integration by ID
*/
require_once(__DIR__ . './vendor/autoload.php');
use Catalytic\SDK\CatalyticClient;
$catalytic = new CatalyticClient();
$catalytic->integrations()->delete('5b2a1554-3232-4f11-aa77-483172bfdd7f');
Updated almost 4 years ago