Skip to main content
PUT
/
api
/
realm-configs
/
default
Set the default realm
import requests

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

payload = { "id": "<string>" }
headers = {"Content-Type": "application/json"}

response = requests.put(url, json=payload, headers=headers)

print(response.json())

Body

application/json
id
string
required

Response

202

Accepted