HumHub icon

HumHub

Consume HumHub API (v.0.1.8)

Actions126

Overview

This node interacts with the HumHub API to retrieve all mail tags associated with a specific mail conversation (message). It supports fetching either all tags or a limited number of tags with pagination options. This is useful for scenarios where you need to manage or analyze tags related to email conversations within the HumHub platform, such as organizing emails by tags or automating workflows based on tag data.

Use Case Examples

  1. Retrieve all tags for a given mail conversation to display or process them in an automation workflow.
  2. Fetch a limited number of mail tags with pagination to handle large sets of tags efficiently.

Properties

Name Meaning
Authentication Method of authentication to use for the API request (Basic Auth or JWT Token).
Message ID The ID of the mail conversation for which to retrieve tags.
Return All Whether to return all mail tags or limit the number of results.
Query Parameters Additional query parameters for limiting and paginating the results when not returning all.

Output

JSON

  • id - Unique identifier of the mail tag.
  • name - Name of the mail tag.
  • messageId - ID of the mail conversation the tag belongs to.
  • createdAt - Timestamp when the tag was created.
  • updatedAt - Timestamp when the tag was last updated.

Dependencies

  • HumHub API

Troubleshooting

  • Ensure the Message ID is provided and valid; missing or incorrect IDs will cause API errors.
  • Check authentication credentials (Basic Auth or JWT Token) are correctly configured to avoid authorization errors.
  • If limiting results, ensure 'Limit' is between 1 and 50; values outside this range may cause errors.
  • Network or API downtime can cause request failures; verify API availability.

Links

Discussion