Python
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)
Make the specified realm the default realm.
Documentation IndexFetch the complete documentation index at: https://doc.lucidworks.com/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://doc.lucidworks.com/llms.txt
Use this file to discover all available pages before exploring further.
Accepted
Was this page helpful?