PUT
/
experiments
/
{id}
/
metrics
Recompute experiment metrics
curl --request PUT \
  --url https://{FUSION HOST}/api/experiments/{id}/metrics \
  --header 'Authorization: Basic <encoded-value>'
{
  "jobs": [
    {
      "state": "unknown",
      "jobId": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

The experiment ID.

Query Parameters

sync
boolean
default:false

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.

syncWait
integer
default:300

The maximum time to wait for an experiment to finish in seconds. Only used if sync=true.

Response

200 - */*

OK

The response is of type object.