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
This node interacts with the Subscribers resource of an email marketing API to retrieve statistical data about subscribers in a specific list. The "Get List Subs Stats" operation fetches subscriber statistics for a given mailing list, which can be useful for monitoring subscriber engagement or managing email campaigns.
Common scenarios include:
- Analyzing subscriber activity or status within a particular mailing list.
- Integrating subscriber statistics into dashboards or reports.
- Automating workflows based on subscriber metrics.
For example, a user might use this node to get the number of active subscribers in a list before sending a campaign or to paginate through subscriber stats when processing large lists.
Properties
| Name | Meaning |
|---|---|
| List Id | The identifier of the mailing list for which subscriber statistics are requested. |
| Additional Query Parameters | Optional parameters to refine the query. Currently supports: - Block Index: Used for pagination; specifies which block of 100 subscribers to return (0 = subscribers 1-100, 1 = subscribers 101-200, etc.). Default is 0. |
Output
The node outputs JSON data containing the subscriber statistics for the specified list. The exact structure depends on the API response but typically includes counts or details about subscribers in the list segment requested.
No binary data output is indicated by the source code or properties.
Dependencies
- Requires an API key credential for authenticating requests to the Acumbamail API.
- The base URL for API requests is
https://acumbamail.com/api/1. - The node expects JSON responses and sends requests with appropriate headers (
Accept: application/json,Content-Type: application/json).
Troubleshooting
- Missing or invalid List Id: Ensure that the List Id property is set correctly and corresponds to an existing mailing list.
- Pagination issues: If retrieving large subscriber lists, use the Block Index parameter to paginate results properly.
- Authentication errors: Verify that the API key credential is configured correctly and has sufficient permissions.
- API rate limits or connectivity problems: Check network connectivity and API usage limits if requests fail or time out.
Links and References
- Acumbamail API Documentation (for detailed API endpoints and parameters)
- n8n documentation on creating custom nodes