Actions39
- Chatbot Actions
- Contact Actions
- Message Actions
- Panel Actions
- Sequence Actions
- Session Actions
Overview
This node integrates with the WTS Chat API to manage panels and their annotations. Specifically, the Panel - Create Annotation Text operation allows users to add a textual annotation (note) to a specific card within a panel. This is useful for adding comments, reminders, or additional information related to a card in project management or CRM workflows.
Common scenarios include:
- Adding notes or comments to task cards in a project management board.
- Annotating customer-related cards with important textual remarks.
- Automating the addition of status updates or instructions to cards during workflow automation.
Example: Automatically add a note "Follow up next week" to a sales lead card after a call.
Properties
Name | Meaning |
---|---|
Card ID | The unique identifier of the card to which the annotation text will be added. |
Text | The content of the annotation text to create on the specified card. |
Output
The output is a JSON object representing the created annotation text resource returned by the WTS API. It typically includes details such as the annotation's ID, text content, creation timestamp, and possibly metadata about the annotation.
No binary data output is involved in this operation.
Dependencies
- Requires an active connection to the WTS API using an API key credential.
- The node expects the API key to be configured in n8n credentials under a generic API authentication token.
- Network access to
https://api.wts.chat
is required.
Troubleshooting
- Missing Card ID: If the Card ID property is empty, the node throws an error indicating that the CardId field cannot be empty. Ensure you provide a valid card identifier.
- Empty Text Field: If the Text property is empty, the node throws an error stating that the Text cannot be empty. Provide meaningful annotation text.
- API Errors: Any errors from the WTS API (e.g., invalid card ID, permission issues) are wrapped and thrown as node errors. Check the error message for details.
- Rate Limits / Timeouts: If many requests are sent rapidly, consider adding delays or handling rate limits according to WTS API guidelines.
Links and References
- WTS Chat API Documentation (Assumed URL based on baseURL in code)
- n8n Documentation on Creating Custom Nodes
- General info on Annotations in Project Management Tools