Skip to main content
POST
/
webapps
/
{id}
/
edits
/
{sessionId}
/
action
Perform action on specified editing session
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)

Path Parameters

id
string
required

Application ID

sessionId
string
required

Session ID

Body

application/json · object

JSON-formatted configuration values

The body is of type object.

Response

default

successful operation