Skip to main content
POST
/
apps
/
{id}
/
{service}
/
{path}
Python
import requests

url = "http://api/apollo/apps/{id}/{service}/{path}"

payload = {}
headers = {"Content-Type": "application/json"}

response = requests.post(url, json=payload, headers=headers)

print(response.text)

Path Parameters

id
string
required
service
string
required
path
string
required

Body

application/json · object

Response

default

successful operation