Python
import requests url = "https://{FUSION HOST}/api/license/check" response = requests.get(url) print(response.json())
true
Check whether the current license is valid.
successful operation
true if the license is valid.
Was this page helpful?