Actions17
- Contacts Actions
- SMS Messages Actions
- WhatsApp Messages Actions
- RCS Messages Actions
- Omni Rooms Actions
- Message Templates Actions
Overview
This node integrates with the Yup.chat API to manage message templates and send messages across multiple communication channels such as SMS, WhatsApp, RCS, and Omni Rooms. Specifically, for the Message Templates - Delete operation, it allows users to delete an existing message template by specifying its unique Template ID.
Common scenarios where this node is beneficial include:
- Automating the cleanup of outdated or unused message templates in a messaging system.
- Managing WhatsApp message templates programmatically within workflows.
- Integrating template management into broader customer communication automation.
For example, a user might use this node to delete a WhatsApp message template that is no longer relevant after a marketing campaign ends.
Properties
| Name | Meaning |
|---|---|
| Template ID | ID of the template to delete |
Output
The output JSON contains the response from the Yup.chat API after attempting to delete the specified template. This typically includes confirmation of deletion or error details if the operation failed.
Example output structure (simplified):
{
"json": {
// API response confirming deletion or error information
}
}
No binary data is produced by this operation.
Dependencies
- Requires an active connection to the Yup.chat API.
- Needs an API key credential configured in n8n for authentication.
- The base URL defaults to
https://api.yup.chatbut can be customized via credentials.
Troubleshooting
Common issues:
- Invalid or missing Template ID will cause the API to reject the request.
- Insufficient permissions or invalid API key may result in authorization errors.
- Network connectivity problems can prevent successful API calls.
Error messages:
"Template not found": The provided Template ID does not exist; verify the ID."Unauthorized"or"Invalid API key": Check that the API key credential is correctly set up.- HTTP errors like 4xx or 5xx indicate client or server issues respectively; review API documentation or retry later.
To resolve errors, ensure the Template ID is correct, the API key is valid, and network access to Yup.chat API is available.
Links and References
- Yup.chat API Documentation (for detailed API endpoints and parameters)
- n8n Documentation on Creating Custom Nodes