Skip to main content
PUT
/
webapps
/
{id}
/
war
Upload war file for specified webapp
import requests

url = "http://api/apollo/webapps/{id}/war"

payload = {}
headers = {"Content-Type": "*/*"}

response = requests.put(url, json=payload, headers=headers)

print(response.text)

Path Parameters

id
string
required

Application ID

Body

*/* · object

War file

The body is of type object.

Response

default

successful operation