メインコンテンツへスキップ
PUT
/
api
/
v1
/
pipelines
/
{pipeline_uuid}
Update a pipeline
curl --request PUT \
  --url http://localhost:5300/api/v1/pipelines/{pipeline_uuid} \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "name": "<string>",
  "config": {}
}
'
{
  "code": 0,
  "msg": "ok",
  "data": {}
}

承認

X-API-Key
string
header
必須

API Key authentication using X-API-Key header. Example: X-API-Key: lbk_your_api_key_here

パスパラメータ

pipeline_uuid
string<uuid>
必須

ボディ

application/json
name
string
config
object

レスポンス

Pipeline updated successfully

code
integer
:

0

msg
string
:

"ok"

data
object