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, and comments to organize tasks. Specifically, the "Board Löschen" (Delete Board) operation allows users to delete an existing board from their Nextcloud Deck instance.

Typical use cases include:

  • Automating cleanup of outdated or completed project boards.
  • Managing boards programmatically as part of larger workflow automations.
  • Integrating board deletion into broader task or project lifecycle processes.

For example, after archiving all cards in a board, this node can be used to delete the board automatically to keep the workspace tidy.

Properties

Name Meaning
Board Select a board from a searchable list or specify its numeric ID directly to identify which board to delete.

The "Board" property supports two input modes:

  • List: Search and select from available boards.
  • ID: Enter the board's numeric ID manually (must be a number).

Output

The node outputs JSON data representing the result of the delete operation for each input item. Typically, this will confirm successful deletion or provide error details if the operation failed.

No binary data output is involved.

Example output JSON might look like:

{
  "success": true,
  "message": "Board deleted successfully"
}

or, in case of failure:

{
  "error": "Board not found"
}

Dependencies

  • Requires an API key credential for authenticating with the Nextcloud Deck API.
  • The node expects the Nextcloud Deck server URL and authentication credentials to be configured in n8n.
  • Network access to the Nextcloud Deck instance 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: Failure to authenticate with the Nextcloud Deck API will prevent operations. Verify API credentials and permissions.
  • Network Issues: Connectivity problems to the Nextcloud server will cause failures. Check network settings and server availability.
  • Permission Denied: The authenticated user must have rights to delete boards; otherwise, the operation will fail.

If the node throws errors, enabling "Continue On Fail" allows the workflow to proceed while capturing error messages in the output JSON.

Links and References

Discussion