Actions22
- boards Actions
- boards ACL Actions
- Stacks Actions
- Cards Actions
Overview
This node interacts with the Nextcloud Deck API to manage boards and related entities. Specifically, the 'boards:create' operation allows users to create a new board by specifying its title and color. This is useful for organizing projects or tasks visually within Nextcloud Deck. For example, a user can automate the creation of project boards with specific colors to categorize different teams or priorities.
Use Case Examples
- Create a new board titled 'Marketing Campaign' with a red color code 'FF0000' to visually distinguish it from other boards.
- Automate board creation for new projects with predefined titles and colors to maintain consistency across teams.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method of authentication to use for API requests, either Access Token or OAuth2. |
| Title | The title of the new board to be created. |
| Color | The hexadecimal color code representing the color of the new board (e.g., FF0000). |
Output
JSON
id- Unique identifier of the created board.title- Title of the created board.color- Hexadecimal color code of the created board.created_at- Timestamp when the board was created.updated_at- Timestamp when the board was last updated.
Dependencies
- Nextcloud Deck API
Troubleshooting
- Ensure the authentication credentials (Access Token or OAuth2) are valid and have the necessary permissions to create boards.
- Verify that the 'title' and 'color' fields are provided and correctly formatted; missing or invalid values may cause API errors.
- Check network connectivity and API endpoint availability if requests fail.
- Common error messages include authentication failures, invalid input data, or API rate limits. Resolving these involves verifying credentials, input validation, and retrying after some time.
Links
- Nextcloud Deck Official Site - Official site for Nextcloud Deck, providing general information and documentation.
- Nextcloud Deck API Documentation - Detailed API documentation for Nextcloud Deck, useful for understanding available endpoints and data structures.
