查询流水线列表
调试
您可以在OpenAPI Explorer中直接运行该接口,免去您计算签名的困扰。运行成功后,OpenAPI Explorer可以自动生成SDK代码示例。您可以在OpenAPI Explorer中直接运行该接口,免去您计算签名的困扰。运行成功后,OpenAPI Explorer可以自动生成SDK代码示例。
调试
授权信息
|
操作 |
访问级别 |
资源类型 |
条件关键字 |
关联操作 |
|
agentloop:ListPipelines |
list |
*Pipeline
|
无 | 无 |
请求语法
GET /agentspace/{agentSpace}/pipeline HTTP/1.1
路径参数
|
名称 |
类型 |
必填 |
描述 |
示例值 |
| agentSpace |
string |
否 |
my-agent-space |
请求参数
|
名称 |
类型 |
必填 |
描述 |
示例值 |
| pipelineName |
string |
否 |
my-pipeline |
|
| scheduleType |
string |
否 |
RunOnce |
|
| scheduleStatus |
string |
否 |
Active |
|
| nextToken |
string |
否 |
MTIzNDU2Nzg5MA== |
|
| maxResults |
integer |
否 |
20 |
返回参数
|
名称 |
类型 |
描述 |
示例值 |
|
object |
|||
| requestId |
string |
9ACFB10A-1B2C-3D4E-5F6G-7H8I9J0K1L2M |
|
| nextToken |
string |
MTIzNDU2Nzg5MA== |
|
| maxResults |
integer |
20 |
|
| totalCount |
integer |
100 |
|
| pipelines |
array<object> |
||
|
array<object> |
|||
| pipelineName |
string |
my-pipeline |
|
| description |
string |
我的流水线 |
|
| regionId |
string |
cn-hangzhou |
|
| createTime |
string |
2026-01-01T00:00:00Z |
|
| updateTime |
string |
2026-01-02T00:00:00Z |
|
| workspace |
string |
my-workspace |
|
| executePolicy |
object |
||
| mode |
string |
RunOnce |
|
| runOnce |
object |
||
| fromTime |
integer |
1735660800000 |
|
| toTime |
integer |
1735747200000 |
|
| scheduled |
object |
||
| fromTime |
integer |
1735660800000 |
|
| interval |
string |
1h |
|
| scheduleType |
string |
RunOnce |
|
| scheduleStatus |
string |
None |
示例
正常返回示例
JSON格式
{
"requestId": "9ACFB10A-1B2C-3D4E-5F6G-7H8I9J0K1L2M",
"nextToken": "MTIzNDU2Nzg5MA==",
"maxResults": 20,
"totalCount": 100,
"pipelines": [
{
"pipelineName": "my-pipeline",
"description": "我的流水线",
"regionId": "cn-hangzhou",
"createTime": "2026-01-01T00:00:00Z",
"updateTime": "2026-01-02T00:00:00Z",
"workspace": "my-workspace",
"executePolicy": {
"mode": "RunOnce",
"runOnce": {
"fromTime": 1735660800000,
"toTime": 1735747200000
},
"scheduled": {
"fromTime": 1735660800000,
"interval": "1h"
}
},
"scheduleType": "RunOnce",
"scheduleStatus": "None"
}
]
}