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

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

payload = { "id": "a1d0e763-5af0-460c-9638-cb8b8e8fbdb3" }
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