HumHub icon

HumHub

Consume HumHub API (v.0.1.8)

Actions126

Overview

This node interacts with the HumHub API to perform operations on Wiki Pages, specifically supporting the 'Move' operation. It allows users to move a wiki page to a different target space container by specifying the wiki page ID and the target container's GUID. This is useful for organizing wiki pages within different spaces in HumHub, such as moving documentation or knowledge base articles to appropriate sections.

Use Case Examples

  1. Move a wiki page with ID 123 to a new space container with GUID 'abc-123-def-456'.
  2. Reorganize wiki pages by moving them between different space containers to maintain a structured knowledge base.

Properties

Name Meaning
Authentication Method of authentication to use for the API request (Basic Auth or JWT Token).
ID The ID of the wiki page to be moved.
Target The GUID of the target space container where the wiki page will be moved. Note that as of 2021-12-03, HumHub may return a 500 server error for this operation.

Output

JSON

  • id - The ID of the wiki page that was moved.
  • target - The GUID of the target space container where the wiki page was moved.
  • status - The status or response from the API indicating the result of the move operation.

Dependencies

  • HumHub API

Troubleshooting

  • If a 500 server error occurs when moving a wiki page, it may be due to a known issue with the HumHub API when specifying the target space container GUID. Verify the target GUID is correct and try again later or check for API updates.
  • Ensure the wiki page ID and target GUID are valid and exist in the HumHub instance to avoid errors.
  • Authentication errors may occur if the selected authentication method (Basic Auth or JWT Token) is not properly configured or credentials are missing.

Links

  • HumHub API Documentation - Official API documentation for HumHub, useful for understanding available endpoints and parameters.

Discussion