Actions22
- Channel Actions
- Chat Actions
- Message Actions
- Contact Actions
- OTP Code Actions
- OTP Link Actions
Overview
This node allows users to send an emoji reaction to a specific message within the CrunchzApp platform. It is useful in scenarios where you want to programmatically acknowledge, respond to, or highlight messages by adding emoji reactions, such as automating feedback on chat messages or integrating with other workflows that trigger reactions based on certain events.
For example, you could use this node to automatically add a "thumbs up" reaction to messages containing positive feedback or to mark important messages with a star emoji.
Properties
| Name | Meaning |
|---|---|
| Message Id | The unique identifier of the message to which the reaction will be applied. This must be provided to specify the target message. |
| Reaction | The emoji character representing the reaction to apply to the message. Examples include "😍", "👍", "😂", etc. |
Output
The node outputs JSON data representing the result of the reaction operation. Typically, this includes confirmation that the reaction was successfully added to the specified message. The exact structure depends on the API response but generally contains details about the message and the applied reaction.
No binary data output is involved.
Dependencies
- Requires an active connection to the CrunchzApp API.
- Needs an API authentication token configured in n8n credentials to authorize requests.
- The base URL for API requests is
https://api.crunchz.app/api. - Requests are sent with JSON content type headers.
Troubleshooting
- Invalid Message Id: If the provided message ID does not exist or is incorrect, the API may return an error indicating the message was not found. Verify the message ID before sending.
- Unauthorized Access: Missing or invalid API credentials will cause authentication errors. Ensure the API key/token is correctly set up in n8n credentials.
- Unsupported Emoji: Using an unsupported or malformed emoji string might cause the request to fail. Use standard emoji characters.
- Network Issues: Connectivity problems can prevent the node from reaching the CrunchzApp API. Check network settings and API availability.
Links and References
- CrunchzApp API Documentation (refer to official docs for detailed API endpoints and payload formats)
- n8n Documentation on creating and using credentials and HTTP Request nodes