Skip to main content
PUT
/
webapps
/
{id}
/
war
Upload a .war file
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())

Path Parameters

id
string
required

Application ID.

Body

*/* · object

War file.

The body is of type object.