GET
/
updates
{tracking_id}
curl --request GET \
  --url https://kq5jp7qj7wdqklhsxmovkzn4l40obksv.lambda-url.eu-central-1.on.aws/updates{tracking_id} \
  --header 'Authorization: Bearer <token>'
{
  "experiment_id": "<string>",
  "status": "<string>",
  "tracking_id": "<string>",
  "updates": [
    {
      "details": "<any>",
      "id": "<string>",
      "message": "<string>",
      "timestamp": "<string>",
      "update_type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

tracking_id
string
required

Unique tracking identifier for the operation

Response

200
application/json

Successfully retrieved tracking information

Complete tracking information for a specific operation

Groups all updates related to a single tracking ID, providing a complete history of an operation or experiment run.