Stay organized with collections
Save and categorize content based on your preferences.
Searching for security groups
This page explains how to find all of your security groups with the
Cloud Identity Groups API.
REST
To search for all security groups, call
groups.search()
with a query string of labels:cloudidentity.googleapis.com/groups.security.
Python
The following example shows a helper function to search for security groups
using the Python client library:
defsearch_security_groups(service,identity_source_id,pageSize,view):# Set the label to search for all Google groupssearchQuery="&query=parent=='customers/{customer_id}'&&labels:cloudidentity.googleapis.com/groups.security" \
+"&pageSize="+pageSize+"&view="+viewtry:searchGroupsRequest=service.groups().search()searchGroupsRequest.uri+=searchQueryresponse=searchGroupsRequest.execute()print(response)exceptExceptionase:print(e)
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-04-02 UTC."],[[["This page outlines the process of finding all security groups using the Cloud Identity Groups API."],["Utilize the `groups.search()` method in the API with the query string `labels:cloudidentity.googleapis.com/groups.security` to search for security groups."],["When using methods that require the `customer_id`, ensure it is prepended with \"C\", like in the example 'C046psxkn'."],["The Python example demonstrates a helper function that can be used to search for all security groups, specifying a customer ID and security label."]]],[]]