Nextcloud Deck icon

Nextcloud Deck

Verwalten Sie Ihre Nextcloud Deck-Boards, Stacks, Karten und mehr

Overview

The node "Nextcloud Deck" allows users to manage Nextcloud Deck resources such as boards, stacks, cards, comments, and attachments. Specifically, the operation "Kommentar Erstellen" (Create Comment) enables adding a new comment to a card within a specified board and stack.

This node is beneficial in scenarios where you want to automate collaboration workflows by programmatically adding comments to project cards, for example:

  • Automatically posting status updates or notes on task cards.
  • Adding feedback or review comments triggered by external events.
  • Logging automated messages or reminders on cards during workflow execution.

Properties

Name Meaning
Board Select a board from a searchable list or enter its numeric ID manually.
Stack Select a stack from a searchable list or enter its numeric ID manually.
Karte Select a card from a searchable list or enter its numeric ID manually.
Nachricht The content of the comment to be created. Supports expressions and AI-assisted input.

Output

The node outputs an array of JSON objects, each representing the result of the executed operation per input item. For the "Kommentar Erstellen" operation, the output JSON contains the details of the newly created comment as returned by the Nextcloud Deck API.

No binary data output is involved in this operation.

Dependencies

  • Requires an API key credential for authenticating with the Nextcloud Deck API.
  • The node depends on Nextcloud Deck's REST API endpoints to perform operations on boards, stacks, cards, comments, and attachments.
  • Proper configuration of the API endpoint and authentication credentials in n8n is necessary.

Troubleshooting

  • Common issues:

    • Invalid or missing board, stack, or card IDs will cause errors when creating comments.
    • Network or authentication failures can prevent communication with the Nextcloud Deck API.
    • Providing non-numeric IDs where numeric ones are expected will trigger validation errors.
  • Error messages:

    • "Bitte eine gültige Board-ID (Zahl) eingeben" indicates the board ID format is incorrect; ensure it is a number.
    • "Bitte eine gültige Stack-ID (Zahl) eingeben" indicates the stack ID format is incorrect.
    • "Bitte eine gültige Card-ID (Zahl) eingeben" indicates the card ID format is incorrect.
    • "Unbekannte Ressource: ..." means an unsupported resource was selected; verify the resource name.
  • Resolution tips:

    • Double-check that all required IDs are correctly provided and correspond to existing entities.
    • Verify API credentials and network connectivity.
    • Use the list mode to select resources to avoid manual entry errors.

Links and References

Discussion