LangBot Docs
Pipelines

获取所有流水线

GET
/api/v1/pipelines

Authorization

X-API-Key<token>

In: header

Query Parameters

sort_by?string
Default"created_at"
sort_order?string
Default"DESC"

Value in

  • "ASC"
  • "DESC"

Response Body

application/json

curl -X GET "https://example.com/api/v1/pipelines"
{  "code": 0,  "data": {    "pipelines": [      {        "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",        "name": "string",        "config": {},        "is_default": true,        "created_at": "2019-08-24T14:15:22Z",        "updated_at": "2019-08-24T14:15:22Z"      }    ]  }}