Nextcloud Deck icon

Nextcloud Deck

Consume NextCloud Deck API (v.0.1.3)

Overview

This node interacts with the Nextcloud Deck API to update a stack within a specified board. It allows users to modify stack properties such as title, order, type, description, and due date. This operation is useful for managing project boards by reorganizing or updating stack details to reflect current priorities or statuses.

Use Case Examples

  1. Updating the title and order of a stack in a project management board to reflect a new workflow.
  2. Changing the description and due date of a stack to provide more context and deadlines for team members.

Properties

Name Meaning
Authentication Method of authentication to use for the API request, either Access Token or OAuth2.
Board ID The unique identifier of the board containing the stack to update.
Stack ID The unique identifier of the stack to update.
Title The new title for the stack.
Order The order number used for sorting the stacks within the board.
Archived Boolean flag indicating whether the stack is archived or not.

Output

JSON

  • id - The unique identifier of the updated stack.
  • title - The updated title of the stack.
  • order - The updated order value for sorting the stack.
  • type - The type of the stack, if provided.
  • description - The description of the stack, if provided.
  • dueDate - The due date of the stack, if provided.
  • archived - Indicates if the stack is archived.

Dependencies

  • Nextcloud Deck API

Troubleshooting

  • Ensure that the Board ID and Stack ID are correct and exist in the Nextcloud Deck instance to avoid 'not found' errors.
  • Verify that the authentication credentials (Access Token or OAuth2) are valid and have the necessary permissions to update stacks.
  • If the API returns an error object with a 'name' property equal to 'Error', check the error message for details and correct the request parameters accordingly.

Links

  • Nextcloud Deck - Official website for Nextcloud Deck, the project management tool this node interacts with.
  • Nextcloud Deck API Documentation - API documentation for Nextcloud Deck, useful for understanding available endpoints and parameters.

Discussion