h2oGPTe icon

h2oGPTe

h2oGPTe is an AI-powered search assistant for your internal teams to answer questions gleaned from large volumes of documents, websites and workplace content.

Actions198

Overview

This node operation removes an inactivity interval setting from a specified collection. Inactivity intervals typically define a period after which a collection might be considered inactive or subject to certain automated actions (e.g., archiving or deletion). By removing this interval, the collection will no longer have an inactivity timeout applied.

Use cases:

  • When you want to disable automatic inactivity-based actions on a collection.
  • Managing collections where inactivity should not trigger any changes.
  • Adjusting collection lifecycle policies dynamically without deleting the collection.

Example:
If you have a document collection that automatically archives after 30 days of inactivity, but you want to keep it active indefinitely, you can use this operation to remove the inactivity interval.

Properties

Name Meaning
Collection ID The unique identifier of the collection from which the inactivity interval will be removed.

Output

The output is the full HTTP response returned by the API call to delete the inactivity interval from the collection. This typically includes status information confirming the success or failure of the operation and may contain metadata about the updated collection state.

No binary data is involved in this operation.

Dependencies

  • Requires an API key credential for authentication with the external service.
  • The node sends an HTTP DELETE request to the endpoint /collections/{collection_id}/inactivity_interval.
  • The base URL for the API is configured via credentials and must be set correctly.
  • Proper permissions are required to modify collection settings.

Troubleshooting

  • Invalid Collection ID: If the provided collection ID does not exist or is incorrect, the API will return an error indicating the collection was not found. Verify the collection ID.
  • Insufficient Permissions: If the API key lacks permission to modify the collection, an authorization error will occur. Ensure the API key has appropriate access rights.
  • Network Issues: Connectivity problems may cause request failures. Check network connectivity and API endpoint availability.
  • API Endpoint Changes: If the external API changes its endpoint or behavior, the node may fail. Keep the integration updated with the latest API specifications.

Links and References

  • Refer to the external API documentation for collections management for details on the DELETE /collections/{collection_id}/inactivity_interval endpoint.
  • Consult your API provider's authentication and permission guides to ensure proper setup.

Discussion