Path Parameters
Application ID
Body
*/* · object
War file
The body is of type object.
Response
default
successful operation
import requests
url = "http://api/apollo/webapps/{id}/war"
payload = {}
headers = {"Content-Type": "*/*"}
response = requests.put(url, json=payload, headers=headers)
print(response.text)import requests
url = "http://api/apollo/webapps/{id}/war"
payload = {}
headers = {"Content-Type": "*/*"}
response = requests.put(url, json=payload, headers=headers)
print(response.text)Application ID
War file
The body is of type object.
successful operation
Was this page helpful?