Skip to main content
GET
/
api
/
v1
/
pipelines
获取所有流水线
curl --request GET \
  --url http://localhost:5300/api/v1/pipelines \
  --header 'X-API-Key: <api-key>'
{
  "code": 0,
  "data": {
    "pipelines": [
      {
        "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>",
        "config": {},
        "is_default": true,
        "created_at": "2023-11-07T05:31:56Z",
        "updated_at": "2023-11-07T05:31:56Z"
      }
    ]
  }
}

Authorizations

X-API-Key
string
header
required

Query Parameters

sort_by
string
default:created_at
sort_order
enum<string>
default:DESC
Available options:
ASC,
DESC

Response

200 - application/json

成功

code
integer
Example:

0

data
object