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 Acumbamail API to retrieve information about campaign links. Specifically, for the "Campaigns" resource and the "Get Campaign Links" operation, it fetches the links associated with a particular email campaign identified by its campaign ID. This is useful in scenarios where users want to analyze or manage the URLs embedded in their email campaigns, such as tracking click rates or verifying link correctness.
Practical examples include:
- Extracting all links from a sent campaign to audit or update them.
- Integrating campaign link data into reporting dashboards.
- Automating follow-up actions based on link engagement.
Properties
| Name | Meaning |
|---|---|
| Campaign Id | Identifier of the campaign to retrieve information about. Must be provided as a number. |
Output
The node outputs JSON data containing the details of the campaign links retrieved from the Acumbamail API. The exact structure depends on the API response but typically includes an array or list of links related to the specified campaign, possibly with metadata such as URL, click counts, or link identifiers.
If the node supports binary data output (not evident from the provided code), it would represent any downloadable content related to the campaign links, but this is not indicated here.
Dependencies
- Requires an API key credential for authenticating with the Acumbamail service.
- Connects to the Acumbamail API endpoint at
https://acumbamail.com/api/1. - Uses the
@avantguardllc/n8n-openapi-nodepackage to build properties and handle requests. - The node expects the user to configure the API authentication credentials within n8n.
Troubleshooting
- Missing or invalid Campaign Id: Ensure that the Campaign Id property is set and corresponds to an existing campaign in Acumbamail.
- Authentication errors: Verify that the API key credential is correctly configured and has sufficient permissions.
- API connectivity issues: Check network access to
https://acumbamail.com/api/1and ensure no firewall or proxy blocks the request. - Unexpected API responses: If the API changes or returns errors, review the Acumbamail API documentation and update the node configuration accordingly.
Links and References
- Acumbamail API Documentation (general reference for API endpoints)
- n8n Documentation for configuring credentials and using custom nodes