GET
/
experiments
/
{id}
/
history
Get experiment job history
curl --request GET \
  --url https://{FUSION HOST}/api/experiments/{id}/history \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "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": true,
      "enabled": true,
      "startTimestamp": "2023-11-07T05:31:56Z",
      "runId": "<string>",
      "metrics": [
        {
          "name": "<string>",
          "description": "<string>",
          "jobId": "<string>",
          "binary": true,
          "primary": true,
          "type": "<string>"
        }
      ]
    },
    "experimentStartDate": "2023-11-07T05:31:56Z",
    "experimentEndDate": "2023-11-07T05:31:56Z"
  }
]

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.

Response

200 - */*

OK

The response is of type object[].