Body
application/json · object
JSON-formatted configuration values
The body is of type object.
Response
200 - application/json
successful operation
import requests
url = "http://api/apollo/experiments"
payload = {}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"id": "<string>"
}import requests
url = "http://api/apollo/experiments"
payload = {}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"id": "<string>"
}JSON-formatted configuration values
The body is of type object.
successful operation
Was this page helpful?