Actions15
Overview
This node interacts with the Instantly API to manage campaigns, accounts, and leads. Specifically for the Campaign - Delete operation, it deletes a campaign identified by its unique Campaign ID. This is useful in scenarios where you want to programmatically remove outdated or unwanted campaigns from your Instantly account as part of an automated workflow.
For example, after a campaign has finished running or if it was created by mistake, this node can be used to delete it automatically without manual intervention.
Properties
| Name | Meaning |
|---|---|
| Campaign ID | The unique identifier of the campaign to delete. This is required to specify which campaign should be removed. |
Output
The output JSON contains the response from the Instantly API after attempting to delete the specified campaign. Typically, this will include confirmation of deletion or details about the deleted campaign. The exact structure depends on the API's response but generally confirms success or failure.
No binary data is output by this node.
Dependencies
- Requires an active connection to the Instantly API.
- Requires an API authentication token credential configured in n8n to authorize requests.
- Uses the
instantlyApiRequesthelper function to make HTTP requests to the Instantly API endpoints.
Troubleshooting
Common issues:
- Invalid or missing Campaign ID: Ensure the Campaign ID provided exists and is correct.
- Authentication errors: Verify that the API key credential is valid and has sufficient permissions.
- Network or API downtime: Check connectivity and Instantly service status.
Common error messages:
"404 Not Found": The specified Campaign ID does not exist. Double-check the ID."401 Unauthorized"or"403 Forbidden": Authentication failed or insufficient permissions. Reconfigure the API credentials."400 Bad Request": The request parameters are invalid. Confirm the Campaign ID format.
Resolving these usually involves verifying input parameters, checking API credentials, and ensuring the Instantly API service is operational.
Links and References
- Instantly API Documentation (for detailed API endpoint info)
- n8n documentation on creating custom nodes