HumHub icon

HumHub

Consume HumHub API (v.0.1.8)

Actions126

Overview

This node operation retrieves all tasks associated with a specific content container in HumHub. It supports fetching either all tasks or a limited number of tasks per page, based on user-defined parameters. This is useful for workflows that need to manage or analyze tasks within a particular container, such as project management or content organization scenarios.

Use Case Examples

  1. Fetch all tasks from a project container to display in a dashboard.
  2. Retrieve a limited number of tasks from a container for paginated processing.

Properties

Name Meaning
Authentication Method of authentication to use for the API request, either Basic Auth or JWT Token.
ID The ID of the content container from which to retrieve tasks.
Return All Determines whether to return all tasks or limit the number of tasks returned.
Query Parameters Additional parameters for pagination when not returning all tasks, including limit and page number.

Output

JSON

  • ``
    • id - Unique identifier of the task.
    • title - Title of the task.
    • description - Description or details of the task.
    • status - Current status of the task.
    • assignedUsers - Users assigned to the task.
    • dueDate - Due date of the task.

Dependencies

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

Troubleshooting

  • Ensure the content container ID is valid and accessible with the provided credentials.
  • If 'Return All' is false, verify that the 'Limit' and 'Page' parameters are within allowed ranges.
  • Common errors include authentication failures, invalid container ID, or exceeding API rate limits.

Links

Discussion