Recompute experiment metrics
import requests
url = "https://{FUSION HOST}/api/experiments/{id}/metrics"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.put(url, headers=headers)
print(response.text){
"jobs": [
{
"jobId": "<string>"
}
]
}Recompute experiment metrics
Recompute metrics based on the results of an experiment
PUT
/
experiments
/
{id}
/
metrics
Recompute experiment metrics
import requests
url = "https://{FUSION HOST}/api/experiments/{id}/metrics"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.put(url, headers=headers)
print(response.text){
"jobs": [
{
"jobId": "<string>"
}
]
}Authorizations
Basic authAPI key
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Path Parameters
The experiment ID.
Query Parameters
Whether to wait for the experiment to finish. If false, metrics are retrieved from the current job status which may be empty if the job has not started yet.
The maximum time to wait for an experiment to finish in seconds. Only used if sync=true.
Response
200 - */*
OK
Show child attributes
Show child attributes
Was this page helpful?
⌘I