获取指定的流水线
GET
/api/v1/pipelines/{pipeline_uuid}
获取指定流水线的详细信息
授权
ApiKeyAuth
使用 X-API-Key 请求头进行 API 密钥认证。
示例:X-API-Key: lbk_your_api_key_here
类型API Key (header: X-API-Key)
或
BearerAuth
Bearer 令牌认证。可以是用户 JWT 令牌或 API 密钥。
示例:Authorization: Bearer <token_or_key>
类型HTTP (bearer)
参数
路径参数
pipeline_uuid*
类型string
必填格式
"uuid"响应
成功响应
application/json
JSON
{
"code": 0,
"msg": "ok",
"data": {
"pipeline": {
"uuid": "string",
"name": "string",
"config": {
},
"is_default": true,
"created_at": "string",
"updated_at": "string"
}
}
}
