Skip to main content
GET
/
api
/
realm-configs
/
default
List realms and flag the default realm
import requests

url = "https://{FUSION HOST}/api/realm-configs/default"

response = requests.get(url)

print(response.json())
[
  {
    "id": "<string>",
    "name": "<string>",
    "default": true
  }
]

Response

200 - */*

OK

id
string
name
string
default
boolean