Actions15
- Create Newsletter
- Get Newsletter Info
- Send Newsletter Message
- Subscribe Newsletter
- Subscribe with Invite
- Unsubscribe Newsletter
- Unsubscribe with Invite
- Mute Newsletter
- Get Newsletter Messages
- Send Newsletter Reaction
- Mark Newsletter Viewed
- Subscribe Live Updates
- Get Message Updates
- Accept TOS Notice
- Send Admin Invite
Overview
This node integrates with the DinastiAPI to manage WhatsApp newsletters (channels). It allows users to perform various newsletter-related operations such as listing newsletters, creating newsletters, subscribing/unsubscribing, sending messages, reacting to messages, and managing notifications.
The Send Newsletter Reaction operation specifically enables users to send an emoji reaction to a particular message within a newsletter. This is useful for engaging with newsletter content interactively, providing feedback or acknowledgment without sending a full message.
Practical example:
A marketing team uses this node to monitor their WhatsApp newsletter. When a subscriber reacts with an emoji to a message, the team can track engagement. Using this operation, they can programmatically add reactions to specific newsletter messages, e.g., sending a thumbs-up emoji to highlight popular announcements.
Properties
| Name | Meaning |
|---|---|
| Newsletter JID | The unique identifier (JID) of the newsletter channel to interact with. |
| Server ID | The server-side ID of the specific newsletter message to which the reaction will be sent. |
| Reaction | The emoji character representing the reaction to send (e.g., 👍). |
Output
The node outputs JSON data representing the response from the DinastiAPI after sending the reaction. This typically includes confirmation details about the reaction being registered on the specified newsletter message.
If the API returns any error, the output JSON will contain an error field with the error message.
The node does not output binary data for this operation.
Dependencies
- Requires an active connection to the DinastiAPI service.
- Needs an API authentication credential configured in n8n to authorize requests.
- The node uses HTTP methods (GET/POST) to communicate with the DinastiAPI endpoints.
Troubleshooting
Common issues:
- Invalid or missing Newsletter JID: Ensure the newsletter identifier is correct and corresponds to an existing newsletter.
- Incorrect Server ID: The message ID must exist within the newsletter; otherwise, the reaction cannot be applied.
- Invalid emoji reaction: The reaction string should be a valid emoji character supported by the platform.
- Authentication errors: Verify that the API key or token is correctly set up and has necessary permissions.
Error messages:
"error": "Invalid Newsletter JID"— Check the newsletter JID input."error": "Message not found"— Confirm the server ID corresponds to a valid message."error": "Unauthorized"— Recheck API credentials and permissions.
To resolve these, verify all inputs carefully and ensure the API credentials are valid and active.
Links and References
- DinastiAPI Documentation (general reference for API endpoints)
- WhatsApp Newsletter Concepts: https://developers.facebook.com/docs/whatsapp/newsletters/ (for understanding newsletter messaging concepts)