HumHub icon

HumHub

Consume HumHub API (v.0.1.8)

Actions126

Overview

This node interacts with the HumHub API to manage spaces within the HumHub platform. Specifically, the 'Unarchive' operation allows users to unarchive a previously archived space by providing its ID. This is useful in scenarios where a space was archived for inactivity or organizational purposes and needs to be restored for active use again.

Use Case Examples

  1. Unarchive a space by specifying its ID to restore it to active status.
  2. Manage space lifecycle by toggling archive and unarchive states.

Properties

Name Meaning
Authentication Method of authentication to use for the API request, either Basic Auth or JWT Token.
ID The unique identifier of the space to unarchive.

Output

JSON

  • id - The ID of the unarchived space.
  • name - The name of the unarchived space.
  • description - Description of the space.
  • visibility - Visibility status of the space.
  • join_policy - Join policy of the space.
  • archived - Indicates if the space is archived (should be false after unarchiving).

Dependencies

  • HumHub API

Troubleshooting

  • Ensure the provided space ID exists and is correct; otherwise, the API will return an error.
  • Authentication errors may occur if the credentials (Basic Auth or JWT Token) are invalid or expired.
  • Network issues or incorrect API endpoint configuration can cause request failures.

Links

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

Discussion