Skip to main content
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.json())

Body

application/octet-stream · string<byte>[]

New License.

The body is of type string<byte>[].