Nextcloud Deck icon

Nextcloud Deck

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

Overview

This node integrates with Nextcloud Deck, a project management tool that uses boards, stacks, cards, comments, and attachments to organize tasks. The node allows users to manage these resources programmatically within n8n workflows.

Specifically, the "Board Abrufen" (Get Board) operation under the "Board" resource retrieves information about a specific board in Nextcloud Deck. This is useful for scenarios where you want to fetch details of a particular board to use or manipulate its data further in your workflow, such as syncing board data with other tools, generating reports, or automating task management processes.

Example use cases:

  • Automatically retrieve a board's details when triggered by an event.
  • Use board data to create summaries or dashboards.
  • Integrate board information into notifications or other systems.

Properties

Name Meaning
Board Select a board from a searchable list or specify its ID manually. The ID must be a numeric string.

The "Board" property supports two input modes:

  • List: Choose from a dynamically loaded list of available boards.
  • ID: Enter the numeric ID of the board directly.

Output

The node outputs JSON data representing the requested board's details. The exact structure depends on the Nextcloud Deck API response but typically includes fields such as board ID, title, description, creation date, and other metadata relevant to the board.

No binary data output is indicated for this operation.

Dependencies

  • Requires an API key credential for authenticating with the Nextcloud Deck API.
  • The node expects the Nextcloud Deck instance URL and authentication credentials to be configured in n8n.
  • Network access to the Nextcloud Deck server is necessary.

Troubleshooting

  • Invalid Board ID: If the board ID is not numeric or does not exist, the node will throw an error. Ensure the board ID is correct and accessible.
  • Authentication Errors: Missing or incorrect API credentials will cause authentication failures. Verify that the API key or token is valid and has sufficient permissions.
  • Network Issues: Connectivity problems to the Nextcloud Deck server can cause timeouts or errors. Check network settings and server availability.
  • Unknown Resource Error: If the resource parameter is set incorrectly, the node throws an "Unknown Resource" error. Make sure the resource is set to "board" for this operation.

If the node is set to continue on failure, errors will be returned in the output JSON under an error field instead of stopping execution.

Links and References

Discussion