Nextcloud Deck icon

Nextcloud Deck

Consume NextCloud Deck API (v.0.1.3)

Overview

This node interacts with the Nextcloud Deck API to manage cards within boards and stacks. Specifically, the 'Assign user' operation assigns a user to a card by specifying the board ID, stack ID, card ID, and user ID. This is useful for task management scenarios where tasks (cards) need to be assigned to team members for tracking and accountability.

Use Case Examples

  1. Assign a user to a specific card in a project management board to indicate responsibility for that task.
  2. Automate user assignment to cards based on workflow triggers, such as when a new card is created or moved to a certain stack.

Properties

Name Meaning
Authentication Method of authenticating API requests, either via Access Token or OAuth2.
Board ID Identifier of the board containing the card to which the user will be assigned.
Stack ID Identifier of the stack within the board containing the card.
Card ID Identifier of the card to which the user will be assigned.
User ID Identifier of the user to assign to the card.

Output

JSON

  • success - Indicates if the user assignment operation was successful.
  • name - Error name if an error occurred during the operation.

Dependencies

  • Nextcloud Deck API

Troubleshooting

  • Ensure that the provided Board ID, Stack ID, Card ID, and User ID are correct and exist in the Nextcloud Deck instance.
  • Authentication errors may occur if the access token or OAuth2 credentials are invalid or expired; verify and refresh credentials as needed.
  • API errors returned from the Nextcloud Deck API are thrown as node errors; check the error message for details and adjust parameters accordingly.

Links

  • Nextcloud Deck - Official Nextcloud Deck project page for more information about the service.

Discussion