Python
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.json())
Replace current Fusion License with a new license file.
New License.
The body is of type string<byte>[].
string<byte>[]
Was this page helpful?