HumHub icon

HumHub

Consume HumHub API (v.0.1.8)

Actions126

Overview

This node interacts with the HumHub API to retrieve a specific comment by its ID. It supports authentication via Basic Auth or JWT Token. The node is useful for workflows that need to fetch detailed information about a particular comment within the HumHub platform, such as for moderation, display, or further processing.

Use Case Examples

  1. Retrieve a comment by its ID to display its content in a dashboard.
  2. Fetch comment details for moderation or auditing purposes.

Properties

Name Meaning
Authentication Method used to authenticate with the HumHub API, either Basic Auth or JWT Token.
ID The unique identifier of the comment to retrieve.

Output

JSON

  • id - The unique identifier of the comment.
  • content - The content or text of the comment.
  • createdAt - Timestamp when the comment was created.
  • updatedAt - Timestamp when the comment was last updated.
  • author - Information about the user who authored the comment.

Dependencies

  • HumHub API

Troubleshooting

  • Ensure the comment 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.
  • If the node fails to retrieve data, check network connectivity and API endpoint availability.

Discussion