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
void Delete(String id);
Parameters
Parameter | Type | Description |
---|---|---|
id | String | The id of the Integration to delete |
Example
/*
* This example demonstrates deleting an Integration by ID
*/
import org.catalytic.sdk.CatalyticClient;
import org.catalytic.sdk.entities.Integration;
public class Program {
public static void main(String[] args) throws Exception {
// Create and initialize the Catalytic SDK Client
CatalyticClient catalytic = new CatalyticClient();
// Delete the Integration with id "my-example-integration"
Integration integration = catalytic.integrations().delete("my-example-integration");
}
}
Updated almost 3 years ago