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 organizes tasks using boards, stacks, cards, comments, and attachments. Specifically, the "Anhang Aktualisieren" (Update Attachment) operation allows users to update an existing attachment on a card within a board stack.

Typical use cases include:

  • Updating files attached to task cards, such as replacing outdated documents or images.
  • Automating file versioning by programmatically changing attachments in response to workflow events.
  • Managing project resources by keeping attachments current without manual intervention.

For example, you might use this node to update a PDF file attached to a card after generating a new report, ensuring all team members have access to the latest version directly from the card.

Properties

Name Meaning
Board Select a board from a searchable list or enter its numeric ID manually.
Stack Select a stack within the chosen board from a searchable list or enter its numeric ID manually.
Karte (Card) Select a card within the chosen stack from a searchable list or enter its numeric ID manually.
Anhang ID The numeric ID of the attachment to update.
Neue Daten Optional path or data string representing the new content for the attachment (e.g., file path).

Output

The node outputs JSON objects representing the result of the update operation for each input item. Each output JSON contains the updated attachment's details as returned by the Nextcloud Deck API.

If an error occurs during processing and the node is configured to continue on failure, the output JSON will contain an error field with the error message.

The node does not explicitly handle binary data output for attachments; it operates on metadata and references to attachment data.

Dependencies

  • Requires an API key credential for authenticating with the Nextcloud Deck API.
  • Needs network access to the Nextcloud instance hosting the Deck service.
  • The node uses internal handlers for resource operations, which rely on the Nextcloud Deck REST API endpoints.

Troubleshooting

  • Invalid IDs: If the Board, Stack, Card, or Attachment IDs are incorrect or do not exist, the node will throw errors indicating unknown resources or failed API calls. Verify IDs carefully.
  • Authentication Errors: Missing or invalid API credentials will cause authentication failures. Ensure the API key credential is correctly configured.
  • File Path Issues: When providing new attachment data as a file path, ensure the path is accessible and correct. Incorrect paths may lead to file-not-found errors.
  • API Rate Limits or Network Issues: Temporary network problems or API rate limits can cause request failures. Retrying or checking network connectivity may help.
  • Continue On Fail Behavior: If enabled, errors per item will be included in the output JSON under an error property instead of stopping execution.

Links and References

Discussion