Skip to main content
GET
/
api
/
realm-configs
/
{id}
Get Realm
import requests

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

response = requests.get(url)

print(response.json())
{
  "enabled": true,
  "id": "86df9b5b-4a1c-4b0b-bc10-25aee55fef63",
  "name": "native",
  "realmType": "native"
}

Path Parameters

id
string
required

The realm ID.

Response

Success

The response is of type object.