List all groups
import requests
url = "https://{FUSION HOST}/api/groups"
response = requests.get(url)
print(response.text)[
{
"id": "<string>"
}
]Fetch the list of existing groups.
GET
/
groups
List all groups
import requests
url = "https://{FUSION HOST}/api/groups"
response = requests.get(url)
print(response.text)[
{
"id": "<string>"
}
]Response
200 - application/json
successful operation
Was this page helpful?
⌘I