cURL
curl --request POST \ --url https://pluto-api.trainy.ai/api/runs/status/update \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "runId": 123, "status": "COMPLETED", "statusMetadata": "<string>", "loggerSettings": "<string>" } '
{ "success": true }
Updates the status of an existing run (e.g., RUNNING, COMPLETED, FAILED).
API key obtained from the mlop dashboard
Numeric ID of the run
123
New status
RUNNING
COMPLETED
FAILED
TERMINATED
CANCELLED
"COMPLETED"
Status metadata as JSON string
Logger settings to merge
Status updated successfully
Was this page helpful?