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.text)
This response has no body data.

Documentation Index

Fetch the complete documentation index at: https://doc.lucidworks.com/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

id
string
required

Application ID.

Body

*/*

War file.

The body is of type object.

Response

200 - undefined