Actions26
- Board Actions
- Stack Actions
- Karte Actions
- Kommentar Actions
- Anhang Actions
Overview
This node integrates with Nextcloud Deck, a project management tool that organizes tasks into boards, stacks, cards, and comments. Specifically, the "Kommentar" (Comment) resource with the operation "Alle Kommentare Abrufen" (Retrieve All Comments) allows users to fetch all comments associated with a specific card within a stack on a board.
Typical use cases include:
- Aggregating all comments from a particular card for reporting or analysis.
- Synchronizing comments from Nextcloud Deck into other systems or workflows.
- Monitoring discussions or feedback on tasks represented by cards.
For example, you might use this node to pull all comments from a card representing a feature request to analyze user feedback or track progress.
Properties
| Name | Meaning |
|---|---|
| Board | Select a board from a list or enter its numeric ID. Represents the container of stacks. |
| Stack | Select a stack from a list or enter its numeric ID. Represents a grouping of cards within a board. |
| Karte | Select a card from a list or enter its numeric ID. The specific task or item whose comments are retrieved. |
Each property supports two modes:
- List: Choose from a searchable dropdown populated dynamically.
- ID: Enter the numeric ID directly (validated to be digits only).
All three properties are required to identify the exact location of the comments in the hierarchy.
Output
The node outputs an array of JSON objects, each representing a comment retrieved from the specified card. Each object contains the comment's data fields as provided by the Nextcloud Deck API.
If errors occur during execution and the node is configured to continue on failure, the output will include JSON objects with an error field describing the issue.
No binary data output is produced by this operation.
Dependencies
- Requires an API key credential for authenticating with the Nextcloud Deck API.
- The node depends on internal handlers (
CommentHandler) to perform API calls. - Dynamic loading of boards, stacks, and cards is supported via helper methods to populate selection lists.
Troubleshooting
- Invalid IDs: Ensure that Board, Stack, and Card IDs are numeric and correspond to existing entities in Nextcloud Deck.
- Authentication Errors: Verify that the API key credential is correctly configured and has sufficient permissions.
- Resource Not Found: If no comments are returned, confirm that the specified card actually contains comments.
- Unknown Resource Error: This error indicates an unsupported resource was selected; ensure "Kommentar" is chosen for this operation.
- Continue On Fail: If enabled, errors per item will be included in output instead of stopping execution.