Python
import requests url = "https://{FUSION HOST}/api/webapps/{id}/edits" payload = { "version": "<string>" } headers = {"Content-Type": "application/json"} response = requests.post(url, json=payload, headers=headers) print(response.json())
{ "id": "<string>", "owner": "<string>", "createdAt": "2023-11-07T05:31:56Z", "version": "<string>" }
Start an editing session.
Application ID.
JSON-formatted configuration values.
successful operation
Was this page helpful?