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 interacts with the HumHub API to perform operations related to tasks. Specifically, the 'Get' operation for the 'Task' resource retrieves detailed information about a specific task by its ID. This is useful for workflows that need to fetch task details for processing, reporting, or integration with other systems.
Use Case Examples
- Retrieve a task's details by its ID to display in a dashboard.
- Fetch task information to update related project management tools.
- Use task data to trigger notifications or follow-up actions in an automation workflow.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method of authentication to use when connecting to the HumHub API, either Basic Auth or JWT Token. |
| ID | The unique identifier of the task to retrieve. |
Output
JSON
id- The unique identifier of the task.title- The title or name of the task.description- Detailed description or content of the task.status- Current status of the task (e.g., open, closed).assignedUsers- List of users assigned to the task.responsibleUsers- List of users responsible for the task.start_date- Start date of the task.end_date- End date or due date of the task.all_day- Indicates if the task is an all-day event.is_public- Indicates if the task is public or private.
Dependencies
- HumHub API
Troubleshooting
- Ensure the task ID provided is valid and exists in the HumHub system to avoid 'not found' errors.
- Verify that the correct authentication method and credentials are used to prevent authorization errors.
- Check network connectivity and API endpoint availability if requests fail.
- Handle API rate limits or timeouts by implementing retries or delays.
Links
- HumHub API Documentation - Tasks - Official documentation for the HumHub API related to task management.
