Hi,
I'm trying to get a list of the names and IDs of all configured groups in Python.
Using the following code, I only get some groups in the response, not all of them.
api_instance_SearchApi = PureCloudPlatformClientV2.SearchApi(api_client)
body = PureCloudPlatformClientV2.GroupSearchRequest()
api_response_SearchApi = api_instance_SearchApi.post_groups_search(body)
In particular, it seems to me that the response only contains groups with visibility='public'.
Even using PureCloudPlatformClientV2.SCIMApi(api_client) + get_scim_groups (without filters) gives me the same result.
I'm not getting all the configured groups, only those with Visibility=Public.
Is there a way to get all the groups, not just those with visibility='public'?
Thanks so much for your support.
#PlatformAPI------------------------------
Giampy
------------------------------