HumHub icon

HumHub

Consume HumHub API (v.0.1.8)

Actions126

Overview

This node operation creates a new task list within a specified content container in the HumHub platform. It allows users to define the task list's name, color, and whether the list should be hidden after all tasks are completed. This operation is useful for organizing tasks into categorized lists, enhancing task management and visibility within a project or workspace.

Use Case Examples

  1. Creating a task list named 'Development Tasks' with a blue color in a project container to organize development-related tasks.
  2. Creating a task list that automatically hides once all tasks are completed to keep the workspace clean and focused.

Properties

Name Meaning
Authentication Method of authentication to use for the API request (Basic Auth or JWT Token).
ID The ID of the content container where the task list will be created.
Name The name of the task list to be created.
Color The color assigned to the task list for visual identification.
Hide If Completed Boolean flag indicating if the task list should be hidden after all tasks are completed.

Output

JSON

  • TaskList
    • name - Name of the created task list.
    • color - Color of the created task list.
  • TaskListSettings
    • hide_if_completed - Flag indicating if the task list is hidden after completion.
  • id - ID of the content container where the task list was created.

Dependencies

  • Requires authentication credentials: either Basic Auth or JWT Token for HumHub API.

Troubleshooting

  • Ensure the content container ID is valid and accessible; invalid IDs will cause API errors.
  • The 'Name' property is required; omitting it will result in an error.
  • If the 'Hide If Completed' property is not a boolean, the API may reject the request.
  • Authentication failures can occur if credentials are incorrect or expired; verify credentials before use.

Links

Discussion