Actions42
- Campaigns Actions
- Create Campaign
- Create Template
- Duplicate Template
- Get Campaign Basic Information
- Get Campaign Clicks
- Get Campaigns
- Get Campaign Information By ISP
- Get Campaign Links
- Get Campaign Openers
- Get Campaign Openers By Browser
- Get Campaign Openers By Countries
- Get Campaign Openers By Os
- Get Campaign Soft Bounces
- Get Campaign Total Information
- Get Stats By Date
- Send Template Campaign
- Subscribers Actions
- SMS Actions
- SMTP Actions
- Webhooks Actions
Overview
The node integrates with the Acumbamail API to retrieve inactive subscribers within a specified date range. It is useful for email marketing workflows where you want to identify subscribers who have not engaged (e.g., opened or clicked emails) during a certain period. This can help in cleaning mailing lists, targeting re-engagement campaigns, or analyzing subscriber inactivity trends.
For example, you might use this node to fetch all subscribers inactive between January 1, 2023, and March 31, 2023, then send them a special offer or remove them from your active mailing list.
Properties
| Name | Meaning |
|---|---|
| Date From | Starting date of the date range at 00:00h. Format: YYYY-MM-DD. Defines the beginning of the inactivity period to query. |
| Date To | End date of the date range at 00:00h. Format: YYYY-MM-DD. Defines the end of the inactivity period to query. |
| Additional Query Parameters | Optional parameters to customize the query. Currently supports: - Full Info: Adds detailed info about inactivity reason and date. Possible values: 0 (default), 1 (include full info). |
Output
The node outputs JSON data containing a list of inactive subscribers within the specified date range. Each subscriber entry typically includes their email address. If the "Full Info" option is enabled, each entry also contains:
reason: Numeric code indicating why the subscriber is inactive (e.g., hard bounce = 1, complaint = 2, unsubscription = 3).reason_date: Timestamp when the inactivity reason occurred.
This structured output allows downstream nodes to process or filter subscribers based on inactivity reasons or dates.
The node does not output binary data.
Dependencies
- Requires an API key credential for authenticating with the Acumbamail service.
- The node uses the Acumbamail REST API endpoint at
https://acumbamail.com/api/1. - No additional environment variables are required beyond the API authentication setup.
Troubleshooting
- Missing or invalid date parameters: Ensure both "Date From" and "Date To" are provided in the correct
YYYY-MM-DDformat. Invalid or missing dates will likely cause API errors. - API authentication errors: Verify that the API key credential is correctly configured and has sufficient permissions.
- Empty results: If no inactive subscribers are returned, check that the date range is valid and that there are indeed inactive subscribers in that period.
- Unexpected response structure: If enabling "Full Info," ensure downstream processing accounts for the additional fields (
reason,reason_date).
Links and References
- Acumbamail API Documentation (for details on subscriber endpoints and inactivity reasons)
- n8n documentation on creating custom nodes