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 "Gets Global Configurations" under the "Configuration" resource retrieves global configuration settings from the connected system. It is useful for administrators or users who need to fetch system-wide configuration parameters that affect the behavior of the entire environment.

Typical use cases include:

  • Auditing or reviewing current global settings.
  • Dynamically adjusting workflows based on configuration values.
  • Integrating with other systems that require knowledge of global configurations.

For example, an admin might use this node to list all global configuration keys and their values to verify system setup or troubleshoot issues related to configuration.

Properties

Name Meaning
Additional Options Collection of optional parameters:
- As Admin Boolean option; if set to true, lists global configurations with admin permissions. The user must have admin rights to use this option.

Output

The output JSON contains the list of global configuration items retrieved from the system. Each item typically includes key-value pairs representing configuration keys and their corresponding values.

The node returns the full HTTP response including headers and status code, but the main data of interest is in the JSON body which holds the global configurations.

No binary data output is expected from this operation.

Dependencies

  • Requires connection to the target system's API endpoint configured via credentials.
  • The user must have appropriate permissions; specifically, admin privileges are required if the "As Admin" option is used.
  • The base URL for API requests is derived from the provided credentials.

Troubleshooting

  • Permission Denied: If the user lacks admin rights and tries to use the "As Admin" option, the API will likely return a permission error. Ensure the user has admin privileges or disable the "As Admin" option.
  • Connection Issues: Verify that the API URL and credentials are correctly configured in n8n.
  • Empty Response: If no configurations are returned, confirm that global configurations exist and the user has access to view them.

Links and References

  • Refer to the system's official API documentation for details on the /configurations endpoint and global configuration management.
  • Consult your system administrator for information about required permissions and roles.

Discussion