Actions24
- Account Actions
- Analytics Actions
- Campaign Actions
- Lead Actions
Overview
This node integrates with the Instantly API to manage email account warmup settings within a workspace. Specifically, the "Disable Warmup" operation under the "Account" resource allows users to disable the warmup process for one or multiple email accounts. Email warmup is typically used to gradually increase sending volume and reputation for new email accounts to improve deliverability.
Common scenarios where this node is beneficial include:
- Pausing or stopping the warmup process for specific email accounts that no longer require it.
- Disabling warmup across all email accounts in a workspace except for certain excluded ones.
- Managing email account states programmatically as part of larger automation workflows involving email campaigns or lead management.
Practical example:
- A marketing team wants to disable warmup on a newly added email account after verifying its deliverability manually.
- An admin wants to bulk disable warmup on all accounts except a few critical ones before a major campaign launch.
Properties
| Name | Meaning |
|---|---|
| Apply to All Emails | Boolean flag to enable or disable warmup for all email accounts in the workspace. |
| Email Account | The specific email account to operate on. Can be selected from a searchable list or specified by email address. Required if "Apply to All Emails" is false. |
| Excluded Emails | List of email accounts to exclude from the bulk warmup operation when "Apply to All Emails" is true. |
Output
The node outputs JSON data representing the result of the disable warmup operation. Each output item corresponds to an input item processed and contains either the success response from the Instantly API or an error message if the operation failed.
The structure of each output JSON object includes:
- Success data returned by the Instantly API related to the warmup disabling action.
- In case of failure, an
errorfield with the error message describing what went wrong.
No binary data output is produced by this node.
Dependencies
- Requires an API key credential for authenticating with the Instantly API.
- The node depends on the Instantly API endpoints for managing accounts and their warmup status.
- Proper configuration of the API credential in n8n is necessary for successful execution.
Troubleshooting
- Common issues:
- Invalid or missing API credentials will cause authentication failures.
- Specifying an email account that does not exist or is not accessible may result in errors.
- Network connectivity problems can prevent communication with the Instantly API.
- Error messages:
- Errors returned from the Instantly API are passed through in the output's
errorfield. - If the node fails to load email accounts for dropdowns, it logs errors but returns empty lists.
- Errors returned from the Instantly API are passed through in the output's
- Resolutions:
- Verify API credentials and permissions.
- Ensure the email account exists and is correctly spelled.
- Check network connectivity and API endpoint availability.
- Use the "Apply to All Emails" option carefully and specify exclusions properly to avoid unintended bulk operations.
Links and References
- Instantly API Documentation (general reference for API endpoints)
- n8n documentation on Creating Custom Nodes
- Best practices for email warmup and deliverability (various external resources)