Set initial admin password
import requests
url = "https://{FUSION HOST}/api/"
payload = {}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)Set initial admin password
Create the initial password for the admin user.
POST
/
Set initial admin password
import requests
url = "https://{FUSION HOST}/api/"
payload = {}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)Body
application/json
Response
Created
Was this page helpful?
⌘I