Skip to main content
POST
/
api
/
runs
/
config
/
update
Update run config
curl --request POST \
  --url https://pluto-api.trainy.ai/api/runs/config/update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "runId": 123,
  "config": "{\"model\": \"resnet50\"}"
}
'
{
  "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

config
string
required

Configuration as JSON string

Example:

"{\"model\": \"resnet50\"}"

Response

Config updated successfully

success
boolean
required