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 user groups based on their unique identifiers. It is useful in scenarios where you need to programmatically remove one or more groups from a system that manages permissions and roles, such as cleaning up obsolete groups or automating group lifecycle management.

For example, if an organization wants to delete multiple user groups identified by their IDs after a reorganization, this node can be used to send a request to the backend API to delete those groups efficiently.

Properties

Name Meaning
Group IDs The unique identifiers of groups to be deleted. This should be a string containing one or more group IDs.

Output

The output will contain the full HTTP response from the API call to delete the specified groups. The json field typically includes the server's response confirming the deletion status or any error messages. There is no binary data output for this operation.

Dependencies

  • Requires an API key credential for authentication with the backend service.
  • The node sends an HTTP DELETE request to the endpoint /groups/{group_ids}, where {group_ids} is replaced by the provided group IDs.
  • The base URL for the API is configured via credentials and must be set correctly.

Troubleshooting

  • Invalid Group IDs: If the provided group IDs do not exist or are malformed, the API may return an error indicating that the groups could not be found. Verify the correctness of the group IDs.
  • Authentication Errors: Ensure that the API key credential is valid and has sufficient permissions to delete groups.
  • Network Issues: Connectivity problems to the API endpoint will cause failures; check network access and API availability.
  • API Rate Limits: Deleting many groups at once might hit rate limits; consider batching requests if necessary.

Links and References

  • Refer to your backend API documentation for details on the /groups/{group_ids} DELETE endpoint.
  • Consult your system's permission and group management guides for best practices on deleting groups.

Discussion