Skip to main content
PUT
/
api
/
v1
/
pipelines
/
{pipeline_uuid}
/
extensions
更新流水线扩展配置
curl --request PUT \
  --url http://localhost:5300/api/v1/pipelines/{pipeline_uuid}/extensions \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "enable_all_plugins": true,
  "enable_all_mcp_servers": true,
  "bound_plugins": [
    "<string>"
  ],
  "bound_mcp_servers": [
    "<string>"
  ]
}
'
{
  "code": 0
}

Authorizations

X-API-Key
string
header
required

Path Parameters

pipeline_uuid
string<uuid>
required

Body

application/json
enable_all_plugins
boolean
default:true
enable_all_mcp_servers
boolean
default:true
bound_plugins
string[]
bound_mcp_servers
string[]

Response

200 - application/json

操作成功

code
integer
Example:

0