Get all updates for a specific tracking ID
Retrieve the complete history of updates for a single tracked operation. This endpoint is useful when you want to follow the progress of a specific experiment run or operation from start to finish.
Use Cases
- Track a specific experiment run from initiation to completion
- Debug issues by reviewing the complete update history
- Build detailed progress views for individual operations
- Audit the execution flow of completed experiments
Tracking IDs
Tracking IDs are assigned when operations begin and group all related updates. You’ll receive a tracking ID when:
- Starting a new experiment run
- Initiating a long-running operation
- Submitting batch processing requests
Update Details
The details
field in each update contains type-specific information:
- For
status_change
: previous and new status values - For
progress
: percentage complete and time estimates - For
data_point
: data values and metadata - For
error
: error codes and diagnostic information
Status Values
The overall status
field indicates the current state:
active
: Operation is currently runningcompleted
: Operation finished successfullyfailed
: Operation encountered an errorcancelled
: Operation was cancelled by user
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Unique tracking identifier for the operation
Response
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.