Python
import requests url = "https://{FUSION HOST}/api/groups" response = requests.get(url) print(response.json())
[ { "id": "<string>" } ]
Fetch the list of existing groups.
successful operation
Was this page helpful?