Skip to main content
POST
/
api
/
runs
/
tags
/
update
Update run tags
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
}

Authorizations

Authorization
string
header
required

API key obtained from the mlop dashboard

Body

application/json
runId
number
required

Numeric ID of the run

tags
string[]
required

New tags for the run

Example:
["production", "v2"]

Response

Tags updated successfully

success
boolean
required