调用地址:console-rpa.aliyun.com/rpa/openapi/task/queryTaskScheduleByClientId
调用方式:GET
返回类型:JSON
接口说明:根据客户端唯一标识符获取计划任务
请求参数
名称 | 类型 | 是否必选 | 示例值 | 描述 |
clientId | String | 是 | 5E77DA4EB87BCFB62A8B9527626A47F4 | 客户端唯一标识符 |
currentPage | Integer | 否 | 1 | 页码,默认第一页 |
pageSize | Integer | 否 | 1 | 每页显示记录数 |
返回参数
返回参数公共字段请查阅返回结果,返回参数中的 data
字段说明如下:
名称 | 类型 | 示例值 | 描述 |
uuid | String | 9f613945-cb8f-4ed8-8a04-2ffd9d8f0812 | 计划任务唯一标识符 |
appId | String | fb6a99a1-d8bd-46ee-8bed-2ed9cb5a0c0d | 应用唯一标识符 |
name | String | SystemAutoTask-TestAPP1-2020-04-26 17:15:41 | 计划任务名称 |
groupId | String | b8e097d8-605c-47cf-a5a3-db5d13f8b4ca | 企业唯一表示符 |
status | String | completion | |
creator | String | 93bf42a1-6e65-4912-98b2-4d5ec0e6260a | 创建者 |
scheduleType | String | immediate | |
scheduleExpress | String | null | 计划任务参数 |
scheduleCron | String | null | 计划任务规则 |
scheduleStartDate | Date | null | 计划任务开始时间 |
scheduleEndDate | Date | null | 计划任务结束时间 |
nextTaskTime | Date | null | 下次计划任务结束时间 |
clientType | String | robot_service | |
appName | String | TestAPP1 | 应用名称 |
clientCount | Long | 1 | 应用执行的客户端数量 |
creatorName | String | ss-test | 创建的者账户名称 |
creatorNickName | String | 超级管理员 | 创建者的昵称 |
示例
请求示例:
https://console-rpa.aliyun.com/rpa/openapi/task/queryTaskScheduleByClientId?<公共请求参数>
&clientId=5E77DA4EB87BCFB62A8B9527626A47F4
¤tPage=1
&pageSize=1
返回示例:
{
"requestId":"d2f9fb81-d3de-43c1-8478-1ad2ea14ff6f",
"success":true,
"code":0,
"msg":"调用成功",
"msgCode":"result.success",
"data":[
{
"uuid":"9f613945-cb8f-4ed8-8a04-2ffd9d8f0812",
"appId":"fb6a99a1-d8bd-46ee-8bed-2ed9cb5a0c0d",
"name":"SystemAutoTask-TestAPP1-2020-04-26 17:15:41",
"groupId":"b8e097d8-605c-47cf-a5a3-db5d13f8b4ca",
"status":"completion",
"creator":"93bf42a1-6e65-4912-98b2-4d5ec0e6260a",
"scheduleType":"immediate",
"scheduleExpress":null,
"scheduleCron":null,
"scheduleStartDate":null,
"scheduleEndDate":null,
"nextTaskTime":null,
"clientType":"robot_service",
"appName":"TestAPP1",
"clientCount":1,
"creatorName":"ss-test",
"creatorNickName":"超级管理员"
}
],
"pager":{
"currentPage":1,
"totalPage":7,
"pageSize":1,
"total":7,
"limit":1,
"offset":0
}
}