Actions22
- Chat Actions
- Channel Actions
- Message Actions
- Contact Actions
- OTP Code Actions
- OTP Link Actions
Overview
This node allows users to star or unstar a specific message within the CrunchzApp platform. Starring a message typically marks it as important or for quick reference later, while unstarring removes that mark. This operation is useful in scenarios where users want to highlight key messages in conversations or threads for easier retrieval or follow-up.
Practical examples include:
- Marking an important customer inquiry message for priority handling.
- Unstarring a message once the issue has been resolved or no longer requires attention.
Properties
| Name | Meaning |
|---|---|
| Message Id | The unique identifier of the message to be starred or unstarred. |
| Starred | Boolean flag indicating whether to star (true) or unstar (false) the specified message. |
Output
The node outputs JSON data representing the result of the star/unstar operation on the message. This typically includes confirmation of the action taken and may contain updated message metadata reflecting the new starred status.
No binary data output is involved in this operation.
Dependencies
- Requires an API key credential to authenticate with the CrunchzApp API.
- The node sends requests to the CrunchzApp API endpoint at
https://api.crunchz.app/api. - Proper configuration of the API authentication credentials in n8n is necessary for successful execution.
Troubleshooting
Common issues:
- Invalid or missing Message Id: Ensure the provided message ID exists and is correctly formatted.
- Authentication errors: Verify that the API key credential is valid and has sufficient permissions.
- Network or API downtime: Check connectivity and CrunchzApp service status.
Error messages:
- "Message not found": The specified message ID does not exist; verify the ID.
- "Unauthorized" or "Authentication failed": The API key is invalid or expired; update credentials.
- "Bad Request": Input parameters may be malformed; ensure correct types and required fields.
Resolving these usually involves verifying input values, refreshing credentials, and checking network connectivity.
Links and References
- CrunchzApp API Documentation (assumed URL for reference)
- n8n documentation on API Credentials