Python
import requests url = "https://{FUSION HOST}/api/webapps/{id}/war" payload = {} headers = {"Content-Type": "*/*"} response = requests.put(url, json=payload, headers=headers) print(response.json())
Upload a war file for an app.
Application ID.
War file.
The body is of type object.
object
Was this page helpful?