
# 查询流水线执行计划列表 - QueryExecutionPlanList
#### 功能介绍
查询流水线执行计划列表
#### 调用方法
请参见[如何调用API](https://support.huaweicloud.com/api-pipeline/pipeline_03_0006.html)。
#### URI
GET /v5/{project_id}/api/pipelines/{pipelineId}/execution-plan/list
表1路径参数 
| 参数         | 是否必选 | 参数类型   | 描述                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
|:---|:---|:---|:---|
| project_id | 是    | String | **参数解释**： 项目ID，获取方式请参见[获取项目ID](https://support.huaweicloud.com/api-pipeline/pipeline_03_0036.html)。 **约束限制**： 不涉及。 **取值范围**： 32位字符，由数字和字母组成。 **默认取值**： 不涉及。                              |
| pipelineId | 是    | String | **参数解释**： 流水线ID，可以通过[查询流水线列表](https://support.huaweicloud.com/api-pipeline/ListPipelines.html)接口，其中pipelines.pipelineId即为流水线ID。 **约束限制**： 不涉及。 **取值范围**： 32位字符，仅由数字和字母组成。 **默认取值**： 不涉及。 |
   
表2Query参数 
| 参数         | 是否必选 | 参数类型   | 描述                                                                                                                                                                                                                                                                                                                                                                        |
|:---|:---|:---|:---|
| name       | 否    | String | **参数解释**： 执行计划名称。 **约束限制**： 不涉及。 **取值范围**： 不涉及。 **默认取值**： 不涉及。      |
| page_index | 否    | String | **参数解释**： 查询的页码数。 **约束限制**： 不涉及。 **取值范围**： 大于等于0。 **默认取值**： 不涉及。    |
| page_size  | 否    | String | **参数解释**： 每次查询的条目数量。 **约束限制**： 不涉及。 **取值范围**： 大于等于0。 **默认取值**： 不涉及。 |
   
#### 请求参数
无
#### 响应参数
**状态码：200**
表3响应Body参数 
| 参数         | 参数类型                                                            | 描述   |
|:---|:---|:---|
| total      | Integer                                                         | 总量   |
| page_size  | Integer                                                         | 单页大小 |
| page_index | Integer                                                         | 页码数  |
| data       | Array of [data] objects | 数据列表 |
   
 表4data 
| 参数          | 参数类型   | 描述    |
|:---|:---|:---|
| id          | String | id    |
| name        | String | 名称    |
| pipeline_id | String | 流水线Id |
| creator_id  | String | 创建者Id |
| creator     | String | 创建者名称 |
| create_time | String | 创建时间  |
| updater_id  | String | 更新人id |
| update_time | String | 更新时间  |
| run_param   | String | 运行参数  |
   
#### 请求示例
无
#### 响应示例
**状态码：200**
ok
```
{
  "total" : 1,
  "data" : [ {
    "id" : "3d5e9ce29c0c426096b79599e794d049",
    "name" : "test",
    "pipeline_id" : "4a5350af4b5041d4a7fdea16d6938eb0",
    "creator_id" : "05d8ca972f114765a8984795a8aa4d41",
    "creator" : "user1",
    "create_time" : 1757923968000,
    "updater_id" : "05d8ca972f114765a8984795a8aa4d41",
    "update_time" : 1757923968000,
    "run_param" : "{}"
  } ],
  "page_size" : 10,
  "page_index" : 1
}
```
#### 状态码
| 状态码 | 描述 |
|:---|:---|
| 200 | ok |
   
#### 错误码
请参见[错误码](https://support.huaweicloud.com/api-pipeline/ErrorCode.html)。
