Skip to content

Updates a Run.

POST
/api/v4/projects/{id}/ml/mlflow/api/2.0/mlflow/runs/update
id
required
One of:
string

The ID or URL-encoded path of the project

Example
1
Media type application/json
object
run_id
required

UUID of the candidate.

string
nullable
status

Status of the run. Accepts: [“RUNNING”, “SCHEDULED”, “FINISHED”, “FAILED”, “KILLED”].

string
nullable
Allowed values: RUNNING SCHEDULED FINISHED FAILED KILLED
end_time

Ending time of the run

integer
nullable

Created

Media type application/json
object
run_info
object
run_id
string
run_uuid
string
experiment_id
string
start_time

Unix timestamp in milliseconds

integer
end_time

Unix timestamp in milliseconds

integer
run_name
string
status
string
artifact_uri
string
lifecycle_stage
string
user_id
string
Example
{
"run_info": {
"status": "FINISHED",
"lifecycle_stage": "active"
}
}

Bad Request

Not Found