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 deletes global configuration items identified by their keys. It is designed for administrative use to remove specific global configuration settings from the system. This can be useful when cleaning up obsolete or incorrect global configurations that affect the entire environment.

Practical example:
An admin wants to remove certain global feature flags or system-wide parameters that are no longer needed or were set incorrectly. By specifying the keys of these configuration items, this node will delete them from the global configuration store.

Properties

Name Meaning
Key Names Keys of the global configuration items that will be deleted (comma-separated string)

Output

The output contains the full HTTP response returned by the API after attempting to delete the specified global configuration items. The json field typically includes status information about the deletion operation, such as success confirmation or error details.

No binary data is involved in this operation.

Dependencies

  • Requires an API key credential for authentication with the external service.
  • The node sends a DELETE HTTP request to the endpoint /configurations/{key_names}, where {key_names} is replaced by the provided keys.
  • The user must have administrative permissions to perform this operation.

Troubleshooting

  • Common issues:

    • Providing invalid or non-existent key names may result in errors or no changes.
    • Insufficient permissions will cause authorization errors.
    • Network or connectivity issues can prevent successful API calls.
  • Error messages and resolutions:

    • 401 Unauthorized / 403 Forbidden: Check that the API key credential has sufficient privileges.
    • 404 Not Found: Verify that the key names exist in the global configuration.
    • 400 Bad Request: Ensure the key names are correctly formatted and not empty.

Links and References

  • Refer to your platform's API documentation for "Global Configuration" management endpoints.
  • Consult your administrator guide for permission requirements related to global configuration changes.

Discussion