Body
application/json · object
Response
default
successful operation
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)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)successful operation
Was this page helpful?