Python
import requests url = "https://{FUSION HOST}/api/webapps/{id}/edits/{sessionId}/files/{file}" payload = {} headers = {"Content-Type": "*/*"} response = requests.put(url, json=payload, headers=headers) print(response.text)
This response has no body data.
Update a file within an editing session.
If-Match value.
Application ID.
Session ID.
File.
File contents.
The body is of type object.
object
Was this page helpful?