Actions22
- boards Actions
- boards ACL Actions
- Stacks Actions
- Cards Actions
Overview
This node interacts with the Nextcloud Deck API to manage boards and their properties. Specifically, the 'boards' resource with the 'update' operation allows users to update an existing board's title and color by specifying the board ID. This is useful for workflows that automate project management tasks, such as renaming boards or changing their appearance based on dynamic inputs.
Use Case Examples
- Updating a board's title and color to reflect a new project phase.
- Automating board updates when certain conditions in a workflow are met, such as archiving or reactivating boards.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method of authentication to use for API requests, either Access Token or OAuth2. |
| ID | The unique identifier of the board to update. |
| Title | The new title to set for the board. |
| Color | The new color to assign to the board. |
| Archived | Boolean flag indicating whether the board is archived or not. |
Output
JSON
id- The unique identifier of the updated board.title- The updated title of the board.color- The updated color of the board.archived- The archived status of the board.
Dependencies
- Nextcloud Deck API
Troubleshooting
- Ensure the board ID provided exists and is correct to avoid 'not found' errors.
- Verify that the authentication credentials (Access Token or OAuth2) are valid and have the necessary permissions to update boards.
- Check the API response for error messages indicating invalid input data, such as missing required fields or invalid color values.
Links
- Nextcloud Deck - Official Nextcloud Deck project page for more information about the API and features.
