Update the Fusion license
import requests
url = "https://{FUSION HOST}/api/license"
payload = ["aSDinaTvuI8gbWludGxpZnk="]
headers = {"Content-Type": "application/octet-stream"}
response = requests.put(url, json=payload, headers=headers)
print(response.text)This response has no body data.Replace current Fusion License with a new license file.
PUT
/
license
Update the Fusion license
import requests
url = "https://{FUSION HOST}/api/license"
payload = ["aSDinaTvuI8gbWludGxpZnk="]
headers = {"Content-Type": "application/octet-stream"}
response = requests.put(url, json=payload, headers=headers)
print(response.text)This response has no body data.Body
application/octet-stream
New License.
Response
200 - undefined
Was this page helpful?
⌘I