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.text)Set the default realm
Make the specified realm the default realm.
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.text)Body
application/json
Response
202
Accepted
Was this page helpful?
⌘I