Actions22
- boards Actions
- boards ACL Actions
- Stacks Actions
- Cards Actions
Overview
This node interacts with the Nextcloud Deck API to manage cards within boards and stacks. Specifically, the 'Reorder' operation for the 'Cards' resource allows users to move a card to a different position within the same stack or to a different stack altogether. This is useful for organizing tasks or items visually in a project management or kanban-style board. For example, a user can reorder a card to prioritize tasks or move it to another stack to reflect a change in status or category.
Use Case Examples
- Reordering a card within the same stack to change its priority.
- Moving a card from one stack to another to update its status or category.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method used to authenticate API requests, either via Access Token or OAuth2. |
| Board ID | The identifier of the board containing the card to be reordered. |
| Stack ID | The identifier of the current stack containing the card. |
| Card ID | The identifier of the card to be reordered. |
| Order | The new position index within the destination stack where the card should be placed. |
| Stack ID Destination | The identifier of the stack where the card should be moved to. |
Output
JSON
success- Indicates whether the reorder operation was successful.id- The identifier of the reordered card.order- The new order position of the card within the stack.stackId- The identifier of the stack where the card now resides.
Dependencies
- Nextcloud Deck API
Troubleshooting
- Ensure that the provided Board ID, Stack ID, Card ID, and destination Stack ID are correct and exist in the Nextcloud Deck instance.
- Verify that the authentication credentials (Access Token or OAuth2) are valid and have sufficient permissions to reorder cards.
- Common error messages may include authorization errors if credentials are invalid, or not found errors if IDs do not correspond to existing resources. Double-check all IDs and authentication details.
Links
- Nextcloud Deck - Official site for Nextcloud Deck, the kanban-style project management tool.
- Nextcloud API Documentation - Documentation for Nextcloud APIs including Deck API endpoints.
