ListPipelineRuns - 获取流水线运行实例列表

通过 OpenAPI 获取流水线运行实例列表。

适用版本

企业标准版

服务接入点与授权信息

请求语法

GET https://{domain}/oapi/v1/flow/organizations/{organizationId}/pipelines/{pipelineId}/runs

请求头

参数

类型

是否必填

描述

示例值

x-yunxiao-token

string

个人访问令牌。

pt-0fh3****0fbG_35af****0484

请求参数

参数

类型

位置

是否必填

描述

示例值

organizationId

string

path

企业 Id。

5ebbc0228123212b59xxxxx

pipelineId

string

path

流水线 id。

36**66

perPage

integer

query

每页数据条数,默认10,最大支持30。

10

page

integer

query

当前页,默认1。

1

startTime

integer

query

执行开始时间。

1590730400000

endTme

integer

query

执行结束时间。

1590730400000

status

string

query

运行状态,状态 FAIL 运行失败 SUCCESS 运行成功 RUNNING 运行中。

FAIL

triggerMode

integer

query

触发方式,1人工触发 2定时触发 3代码提交触发 5流水线触发 6WEBHOOK 触发。

1

请求示例

curl -X 'GET' \
  'https://test.rdc.aliyuncs.com/oapi/v1/flow/organizations/5ebbc0228123212b59xxxxx/pipelines/123/runs?perPage=10&page=1&startTime=1.72917804e+12&endTme=1.72917804e+12&status=FAIL&triggerMode=1' \
  -H 'Content-Type: application/json' \
  -H 'x-yunxiao-token: pt-0fh3****0fbG_35af****0484'

返回参数

参数

类型

描述

示例值

-

array

-

object

creatorAccountId

string

创建人。

1222222222

endTime

integer

结束时间。

1590730400000

pipelineId

integer

流水线 id。

36**66

pipelineRunId

integer

流水线运行实例 id。

1

startTime

integer

开始时间。

1590730400000

triggerMode

integer

触发模式 1人工触发 2定时触发 3代码提交触发 5流水线触发 6 WEBHOOK 触发。

1

返回示例

[
    {
        "creatorAccountId": "1222222222",
        "endTime": 1590730400000,
        "pipelineId": 36**66,
        "pipelineRunId": 1,
        "startTime": 1590730400000,
        "triggerMode": 1
    }
]

响应头

参数

描述

示例值

x-next-page

下一页。

3

x-page

当前页。

2

x-per-page

每页数据条数。

10

x-prev-page

上一页。

1

x-total

总数据量。

100

x-total-pages

总分页数。

10

错误码

访问错误码中心查看 API 相关错误码。