HumHub icon

HumHub

Consume HumHub API (v.0.1.8)

Actions126

Overview

This node operation updates an existing task list in the HumHub system. It allows users to modify properties such as the task list's name, color, and whether the list should be hidden after all tasks are completed. This operation is useful for managing task lists dynamically within workflows, such as renaming a list, changing its color for better visual organization, or setting visibility preferences based on completion status.

Use Case Examples

  1. Updating a task list's name and color to reflect a new project phase.
  2. Changing the visibility of a task list to hide it once all tasks are completed, helping to keep the workspace clean.

Properties

Name Meaning
Authentication Method used to authenticate API requests, either Basic Auth or JWT Token.
ID The unique identifier of the task list to update.
Additional Fields Optional fields to update on the task list, including name, color, and hide_if_completed flag.

Output

JSON

  • TaskList
    • name - Updated name of the task list.
    • color - Updated color of the task list.
  • TaskListSettings
    • hide_if_completed - Updated setting indicating if the task list should be hidden after completion.

Dependencies

  • HumHub API

Troubleshooting

  • Ensure the task list ID provided exists; otherwise, the update will fail with a not found error.
  • Validate that the 'hide_if_completed' field is a boolean; incorrect types may cause API errors.
  • Authentication errors may occur if the provided credentials are invalid or expired; verify the Basic Auth or JWT token used.

Links

Discussion