Actions22
- boards Actions
- boards ACL Actions
- Stacks Actions
- Cards Actions
Overview
This node integrates with the Nextcloud Deck API to manage cards within boards and stacks. Specifically, the 'Cards: Create' operation allows users to create a new card in a specified board and stack. This is useful for automating task management workflows, such as adding new tasks or items to project boards programmatically. For example, a user can automatically create a card with a title, order, type, description, and due date in a project management board when a new issue is reported.
Use Case Examples
- Automatically create a new task card in a project board when a support ticket is received.
- Add a card to a specific stack in a board to track progress on a feature development.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method of authenticating API requests, either via Access Token or OAuth2. |
| Board ID | The identifier of the board where the card will be created. |
| Stack ID | The identifier of the stack within the board where the card will be created. |
| Title | The title of the new card. |
| Order | The order number used for sorting the cards within the stack. |
| Type | The type of the card, currently use 'plain' for standard cards. |
| Description | Optional markdown description text for the card. |
| Due date | Optional due date for the card, can be null. |
Output
JSON
id- Unique identifier of the created card.title- Title of the created card.order- Order value of the card for sorting.type- Type of the card.description- Markdown description of the card.dueDate- Due date of the card, if set.
Dependencies
- Nextcloud Deck API
Troubleshooting
- Ensure that the Board ID and Stack ID are valid 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 request failures might happen due to network issues or incorrect API endpoint usage; check the node parameters and network connectivity.
Links
- Nextcloud Deck - Official Nextcloud Deck project page for more information about the API and features.
