Path Parameters
The experiment ID
import requests
url = "http://api/apollo/experiments/{id}/history"
response = requests.get(url)
print(response.text)[
{
"experiment": {
"id": "<string>",
"description": "<string>",
"uniqueIdParameter": "<string>",
"baseSignalsCollection": "<string>",
"variants": [
{
"id": "<string>",
"name": "<string>",
"collection": "<string>",
"queryPipeline": "<string>",
"params": [
{
"key": "<string>",
"value": "<string>",
"policy": "REPLACE"
}
],
"weight": 123
}
],
"automaticallyAdjustTraffic": false,
"enabled": false,
"startTimestamp": "2023-11-07T05:31:56Z",
"runId": "<string>",
"metrics": [
{
"name": "<string>",
"description": "<string>",
"jobId": "<string>",
"binary": false,
"primary": false
}
]
},
"experimentStartDate": "2023-11-07T05:31:56Z",
"experimentEndDate": "2023-11-07T05:31:56Z"
}
]import requests
url = "http://api/apollo/experiments/{id}/history"
response = requests.get(url)
print(response.text)[
{
"experiment": {
"id": "<string>",
"description": "<string>",
"uniqueIdParameter": "<string>",
"baseSignalsCollection": "<string>",
"variants": [
{
"id": "<string>",
"name": "<string>",
"collection": "<string>",
"queryPipeline": "<string>",
"params": [
{
"key": "<string>",
"value": "<string>",
"policy": "REPLACE"
}
],
"weight": 123
}
],
"automaticallyAdjustTraffic": false,
"enabled": false,
"startTimestamp": "2023-11-07T05:31:56Z",
"runId": "<string>",
"metrics": [
{
"name": "<string>",
"description": "<string>",
"jobId": "<string>",
"binary": false,
"primary": false
}
]
},
"experimentStartDate": "2023-11-07T05:31:56Z",
"experimentEndDate": "2023-11-07T05:31:56Z"
}
]The experiment ID
Was this page helpful?