lib/fusionauth/fusionauth_client.rb in fusionauth_client-1.38.0 vs lib/fusionauth/fusionauth_client.rb in fusionauth_client-1.39.0

- old
+ new

@@ -3461,9 +3461,21 @@ .post() .go() end # + # Searches groups with the specified criteria and pagination. + # + # @param request [OpenStruct, Hash] The search criteria and pagination information. + # @return [FusionAuth::ClientResponse] The ClientResponse object. + def search_groups(request) + start.uri('/api/group/search') + .body_handler(FusionAuth::JSONBodyHandler.new(request)) + .post() + .go() + end + + # # Searches the IP Access Control Lists with the specified criteria and pagination. # # @param request [OpenStruct, Hash] The search criteria and pagination information. # @return [FusionAuth::ClientResponse] The ClientResponse object. def search_ip_access_control_lists(request)