Python
import requests url = "https://{FUSION HOST}/api/realm-configs/default" response = requests.get(url) print(response.json())
[ { "id": "<string>", "name": "<string>", "default": true } ]
OK
Was this page helpful?