Python
import requests url = "https://{FUSION HOST}/api/webapps/{id}/edits/{sessionId}/action" payload = {} headers = {"Content-Type": "application/json"} response = requests.post(url, json=payload, headers=headers) print(response.json())
Perform an action on an editing session.
Application ID.
Session ID.
JSON-formatted configuration values.
The body is of type object.
object
Was this page helpful?