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 'Get' operation for the 'Cards' resource retrieves detailed information about a specific card identified by its Card ID, within a given Stack ID and Board ID. This is useful for workflows that need to fetch card details for project management, task tracking, or integration with other tools.
Use Case Examples
- Retrieve details of a specific card in a project management board to display or process its information in an automation workflow.
- Fetch card data to update a dashboard or trigger notifications based on card status or content.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method used to authenticate API requests, either via Access Token or OAuth2. |
| Board ID | Identifier of the board containing the stack and card to retrieve. |
| Stack ID | Identifier of the stack within the board that contains the card. |
| Card ID | Identifier of the specific card to retrieve. |
Output
JSON
id- Unique identifier of the card.title- Title or name of the card.order- Order or position of the card within the stack.type- Type or category of the card.owner- Owner or assignee of the card.description- Detailed description or content of the card.dueDate- Due date or deadline associated with the card.
Dependencies
- Nextcloud Deck API
Troubleshooting
- Ensure that the Board ID, Stack ID, and Card ID are correctly specified 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 result from network issues or incorrect API endpoint paths; check connectivity and parameter correctness.
Links
- Nextcloud Deck API Documentation - Official documentation for the Nextcloud Deck API, useful for understanding available endpoints and data structures.
