HumHub icon

HumHub

Consume HumHub API (v.0.1.8)

Actions126

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

  1. Retrieve a task's details by its ID to display in a dashboard.
  2. Fetch task information to update related project management tools.
  3. 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

Discussion