Python
import requests url = "http://api/apollo/webapps/{id}/edits/{sessionId}/action" payload = {} headers = {"Content-Type": "application/json"} response = requests.post(url, json=payload, headers=headers) print(response.text)
Application ID
Session ID
JSON-formatted configuration values
The body is of type object.
object
successful operation
Was this page helpful?