Python
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())
Accepted
Was this page helpful?