Nextcloud Deck icon

Nextcloud Deck

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

Overview

The node "Nextcloud Deck" allows managing various resources within Nextcloud Deck, a project management tool integrated into Nextcloud. Specifically, for the resource Kommentar (Comment) and operation Kommentar Löschen (Delete Comment), this node deletes a specified comment from a card in a board stack.

This operation is useful when automating cleanup or moderation tasks on project boards, such as removing outdated or irrelevant comments programmatically. For example, you might use it to delete comments that match certain criteria or after a task is completed.

Properties

Name Meaning
Board Select a board either from a searchable list or by entering its numeric ID.
Stack Select a stack within the board either from a searchable list or by entering its numeric ID.
Karte (Card) Select a card within the stack either from a searchable list or by entering its numeric ID.
Kommentar ID The numeric ID of the comment to delete.

Details:

  • Board, Stack, and Karte are resource locators allowing selection via list search or direct ID input.
  • All IDs must be numeric strings.
  • These properties identify the exact location of the comment to delete.
  • Kommentar ID is mandatory to specify which comment to remove.

Output

The output JSON contains the result of the delete operation. Typically, this will be an object confirming the deletion or providing status information from the API.

Since this operation deletes data, no binary output is expected.

Example output structure (conceptual):

{
  "success": true,
  "message": "Comment deleted successfully",
  "commentId": "123"
}

Dependencies

  • Requires an API key credential for authenticating with the Nextcloud Deck API.
  • The node depends on Nextcloud Deck's REST API endpoints for boards, stacks, cards, and comments.
  • Proper permissions on the Nextcloud instance to delete comments.
  • Network access to the Nextcloud server hosting the Deck app.

Troubleshooting

  • Invalid ID errors: Ensure all IDs (board, stack, card, comment) are numeric and correspond to existing entities.
  • Authentication failures: Verify the API key or authentication token is valid and has sufficient permissions.
  • Resource not found: If the comment or parent entities do not exist or have been deleted, the operation will fail.
  • API rate limits or network issues: May cause temporary failures; retry or check connectivity.
  • Error messages: Usually include details from the Nextcloud API; review them to adjust inputs or credentials.

Links and References

Discussion