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
void deleteIntegrationConnection(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
*/
import org.catalytic.sdk.CatalyticClient;
public class Program {
public static void main(String[] args) throws Exception {
// Create and initialize the Catalytic SDK Client
CatalyticClient catalytic = new CatalyticClient();
// Delete the IntegrationConnection with id "0e10cf89-dcb0-45e5-80ea-791693573dd1"
catalytic.integrations().deleteIntegrationConnection("0e10cf89-dcb0-45e5-80ea-791693573dd1");
}
}
Updated almost 4 years ago