Skip to main content

Update Version Status

Updates the status of a specific agent version (e.g., from building to active). Used by the build pipeline.

PUT /api/v1/registry/agent/{agent_name}/version/status — 🌐 Public

Path Parameters

ParameterDescription
agent_nameAgent slug name

Request Body

FieldTypeRequiredDescription
statusstringNew status value (e.g., active, building, failed)

Examples

curl -X PUT https://nasiko.dev/api/v1/registry/agent/weather-agent/version/status \
-H "Content-Type: application/json" \
-d '{"status": "active"}'