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())