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 configuration items associated with a specific role in the system. It is useful for administrators or automation workflows that need to clean up or remove certain configuration keys tied to a role, such as when deprecating features, revoking permissions, or resetting role settings.

Practical examples include:

  • Removing obsolete configuration keys from a role after an update.
  • Cleaning up role-specific settings before deleting or repurposing a role.
  • Automating role configuration management by selectively deleting keys.

Properties

Name Meaning
Role ID The unique identifier of the role for which configuration items will be deleted.
Key Names Comma-separated keys of the configuration items that should be deleted for the given role.

Output

The output contains the full HTTP response returned by the API call that deletes the specified role configuration items. This typically includes status information indicating success or failure of the deletion operation. No binary data is involved.

Dependencies

  • Requires an API key credential for authentication to the backend service.
  • The node sends an HTTP DELETE request to an endpoint structured as /roles/{role_id}/configurations/{key_names}.
  • The base URL and authentication headers are configured via credentials.

Troubleshooting

  • Invalid Role ID: If the provided Role ID does not exist, the API may return a 404 error. Verify the Role ID is correct.
  • Invalid Key Names: If any key names do not exist or are malformed, the API might reject the request or ignore those keys. Ensure keys are valid and properly formatted (likely comma-separated).
  • Permission Denied: Insufficient permissions or invalid API credentials can cause authorization errors. Confirm the API key has rights to modify role configurations.
  • Empty Key Names: Providing empty or missing key names will likely result in an error. Always specify at least one key name to delete.

Links and References

  • Refer to your platform's API documentation for "Role Configuration" management and the DELETE /roles/{role_id}/configurations/{key_names} endpoint.
  • Consult your API key credential setup guide to ensure proper authentication configuration.

Discussion