cURL
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 }
Merges new configuration with existing run config. New keys override existing keys.
API key obtained from the mlop dashboard
Numeric ID of the run
Configuration as JSON string
"{\"model\": \"resnet50\"}"
Config updated successfully
Was this page helpful?