Python
import requests url = "https://{FUSION HOST}/api/webapps/{id}/war/manifest" response = requests.get(url) print(response.json())
"<string>"
Get the MANIFEST.MF of war file.
Application ID.
successful operation
The response is of type string.
string
Was this page helpful?