cURL
curl --request POST \ --url https://pluto-api.trainy.ai/api/runs/tags/update \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "runId": 123, "tags": [ "production", "v2" ] } '
{ "success": true }
Replaces all tags on a run with the provided tags.
API key obtained from the mlop dashboard
Numeric ID of the run
New tags for the run
["production", "v2"]
Tags updated successfully
Was this page helpful?