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 SMS-related data. Specifically, the "Get SMS Simple Report" operation fetches a simple report for a given SMS message identified by its unique SMS ID. This is useful for users who want to track or analyze the status and performance of individual SMS messages sent via Acumbamail.
Common scenarios include:
- Monitoring delivery status of specific SMS messages.
- Retrieving basic analytics or reporting data for SMS campaigns.
- Integrating SMS reporting into automated workflows for notifications or logging.
Example: A marketing automation workflow that sends SMS messages and then uses this node to fetch delivery reports to update a CRM system.
Properties
| Name | Meaning |
|---|---|
| Sms Id | The unique identifier of the SMS message for which the simple report is requested. Must be provided as a number. |
Output
The node outputs JSON data containing the simple report details of the specified SMS message. The exact structure depends on the Acumbamail API response but typically includes fields such as delivery status, timestamps, and possibly counts of successful or failed deliveries.
If the node supports binary data output (not evident from the provided code), it would represent any associated files or attachments related to the SMS report, but this is not indicated here.
Dependencies
- Requires an active connection to the Acumbamail API.
- Needs an API authentication token configured in n8n credentials to authorize requests.
- The base URL for API requests is
https://acumbamail.com/api/1. - The node uses standard HTTP headers for JSON content negotiation.
Troubleshooting
- Missing or invalid Sms Id: Ensure the SMS identifier is provided and is a valid number; otherwise, the API call will fail.
- Authentication errors: Verify that the API key credential is correctly set up and has sufficient permissions.
- Network issues: Check connectivity to the Acumbamail API endpoint.
- API rate limits or quota exceeded: If the API returns errors related to usage limits, consider adjusting request frequency or contacting Acumbamail support.
Links and References
- Acumbamail API Documentation (for detailed API endpoints and response formats)
- n8n documentation on creating custom nodes