Python
import requests url = "https://{FUSION HOST}/api/ai/ml-models" payload = {} headers = {"Content-Type": "application/json"} response = requests.post(url, json=payload, headers=headers) print(response.json())
"<string>"
Upload a model to Fusion.
OK
The response is of type string.
string
Was this page helpful?