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

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

response = requests.get(url)

print(response.json())
{
  "realmType": "ldap",
  "id": "df32cba0-5540-4d73-b769-9f4eaca45e11",
  "name": "dev-ldap3",
  "enabled": false,
  "createdAt": "2025-10-31T17:06:33Z",
  "updatedAt": "2025-10-31T17:35:08Z",
  "config": {
    "autoCreateUsers": true,
    "host": "my.fusionhost.com",
    "ssl": true,
    "port": 10636,
    "ephemeralUsers": false,
    "login": {
      "bindDnTemplate": "uid={},ou=users,dc=security,dc=example,dc=com"
    }
  }
}

Path Parameters

id
string
required

The realm ID. Note that this is not always the same as the realm name. Use GET /realm-configs/default to get the list of realm names with their IDs.

Response

Success

The response is of type object.