Actions22
- boards Actions
- boards ACL Actions
- Stacks Actions
- Cards Actions
Overview
This node updates a card in the Nextcloud Deck application. It allows users to modify various attributes of a card such as its title, order, type, owner, description, and due date. This operation is useful for managing task cards within project boards, enabling dynamic updates to card details as project requirements evolve. For example, a user can update the title and due date of a task card to reflect new deadlines or priorities.
Use Case Examples
- Updating the title and due date of a card to reflect a new deadline.
- Changing the owner of a card to reassign responsibility.
- Modifying the order of cards within a stack to prioritize tasks.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method used to authenticate API requests, either via Access Token or OAuth2. |
| Board ID | Identifier of the board containing the card to update. |
| Stack ID | Identifier of the stack within the board containing the card. |
| Card ID | Identifier of the card to update. |
| Title | New title for the card. |
| Order | Order value for sorting the card within the stack. |
| Type | Type of the card, currently use 'plain'. |
| Owner | Owner of the card (optional). |
| Description | Markdown description of the card (optional). |
| Due date | Due date of the card (optional). |
Output
JSON
id- Unique identifier of the updated card.title- Title of the updated card.order- Order position of the updated card.type- Type of the updated card.owner- Owner of the updated card.description- Markdown description of the updated card.dueDate- Due date of the updated card.
Dependencies
- Nextcloud Deck API
Troubleshooting
- Ensure that the Board ID, Stack ID, and Card ID are correct and correspond to existing entities in Nextcloud Deck.
- Verify that the authentication method and credentials are valid and have sufficient permissions to update cards.
- Common error messages include authorization errors if the token is invalid or expired, and not found errors if the specified card or stack does not exist. To resolve, check credentials and IDs carefully.
Links
- Nextcloud Deck - Official Nextcloud Deck project page.
- Nextcloud API Documentation - Documentation for Nextcloud APIs including Deck.
