Actions126
- User Actions
- Group Actions
- Content Actions
- Post Actions
- Comment Actions
- Like Actions
- Activity Actions
- Notification Actions
- Space Actions
- Calendar Actions
- CFile Directory Actions
- CFile Actions
- CFile Item Management Actions
- Survey Actions
- Task Actions
- Task List Actions
- Wiki Page Actions
- Mail Conversation Actions
- Mail Entry Actions
- Mail Recipient Actions
- Session Actions
- File Actions
- Space Membership Actions
- Topic Actions
- Survey Answer Actions
- Survey Answers Actions
- Wiki Page Revision Actions
- Mail Tag Actions
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
- Fetch all tasks from a project container to display in a dashboard.
- 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
- HumHub API Documentation - Tasks - Official documentation for the HumHub tasks API endpoints.
