Python
import requests url = "https://{FUSION HOST}/api/groups/{id}" response = requests.get(url) print(response.json())
{ "id": "<string>" }
Fetch the specified group.
The group ID.
successful operation
Was this page helpful?