Nextcloud Deck icon

Nextcloud Deck

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

Overview

The node integrates with Nextcloud Deck, a project management tool that organizes tasks using boards, stacks (columns), cards, comments, and attachments. Specifically, the "Stack Erstellen" (Create Stack) operation allows users to create a new stack within a specified board. This is useful for structuring workflows by adding columns such as "To Do," "In Progress," or "Done" to a board.

Practical examples:

  • Automate the creation of workflow stages in a project board.
  • Dynamically add new task categories based on external triggers or inputs.
  • Organize tasks into custom stacks programmatically during project setup.

Properties

Name Meaning
Board Select a board from a list or specify its ID where the new stack will be created.
Titel The title/name of the new stack (e.g., "To Do", "In Progress", "Done").
Reihenfolge The position/order of the stack within the board; 0 means it will be placed at the end.

Output

The node outputs JSON data representing the newly created stack. This typically includes details such as the stack's ID, title, order, and associated board information. No binary data output is indicated.

Example output structure (simplified):

{
  "id": "123",
  "title": "To Do",
  "order": 1,
  "boardId": "456"
}

Dependencies

  • Requires an API key credential for authenticating with the Nextcloud Deck API.
  • The node depends on Nextcloud Deck being accessible via its API endpoint.
  • Proper configuration of the API authentication credentials in n8n is necessary.

Troubleshooting

  • Common issues:

    • Invalid or missing board ID: Ensure the board exists and the ID is correct.
    • Authentication failures: Verify that the API key or token is valid and has sufficient permissions.
    • Network connectivity problems: Confirm that the Nextcloud instance is reachable from n8n.
  • Error messages:

    • "Unbekannte Ressource" (Unknown resource): Occurs if an unsupported resource is selected; ensure "stack" is chosen.
    • Validation errors on board ID input: Make sure the board ID is numeric as required.
    • API errors returned from Nextcloud Deck: Check API response for details and adjust parameters accordingly.

Links and References

Discussion