Python
import requests url = "https://{FUSION HOST}/api/realm-configs/{id}" response = requests.get(url) print(response.text)
{ "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" } } }
Get a realm’s configuration details.
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.
GET /realm-configs/default
Success
The response is of type object.
object
Was this page helpful?