Actions22
- boards Actions
- boards ACL Actions
- Stacks Actions
- Cards Actions
Overview
This node interacts with the Nextcloud Deck API to manage stacks within boards. Specifically, the 'Stacks: Create' operation allows users to create a new stack on a specified board by providing the board ID, stack title, and order for sorting. This is useful for organizing tasks or cards into categorized stacks within a project management board.
Use Case Examples
- Creating a new stack titled 'To Do' on a project board with a specific order to organize tasks.
- Automating the creation of stacks in Nextcloud Deck when new projects or phases start.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method of authentication to use for API requests, either Access Token or OAuth2. |
| Board ID | The unique identifier of the board where the new stack will be created. |
| Title | The title of the new stack to be created. |
| Order | The order number used for sorting the stacks within the board. |
Output
JSON
id- The unique identifier of the created stack.title- The title of the created stack.order- The order value assigned to the stack for sorting.boardId- The board ID where the stack was created.success- Indicates if the stack creation was successful.
Dependencies
- Nextcloud Deck API
Troubleshooting
- Ensure the provided Board ID is valid and accessible with the given authentication method.
- Verify that the authentication credentials (Access Token or OAuth2) are correctly configured and have the necessary permissions.
- Common error messages may include authorization errors if credentials are invalid or missing, or validation errors if required parameters like title or order are missing or incorrect.
- If the API returns an error object with a 'name' property equal to 'Error', the node throws a NodeApiError. Check the error message for details and correct the input or credentials accordingly.
Links
- Nextcloud Deck - Official Nextcloud Deck project page for more information about the service.
- Nextcloud API Documentation - General API documentation for Nextcloud, useful for understanding API endpoints and authentication.
