调用地址:console-rpa.aliyun.com/rpa/openapi/task/queryTaskLogs
调用方式:GET
返回类型:JSON
接口说明:获取计划任务运行日志
请求参数
名称 | 类型 | 是否必选 | 示例值 | 描述 |
taskId | String | 是 | 3226a05a-98b9-4d48-8529-b8fb7e4561c6 | 任务唯一标识符 |
currentPage | integer | 否 | 1 | 页码,默认第一页 |
pageSize | integer | 否 | 1 | 每页记录数 |
返回参数
返回参数公共字段请查阅返回结果,返回参数中的 data
字段说明如下:
名称 | 类型 | 示例值 | 描述 |
taskId | String | e6104c63-c7a3-4f56-b81a-8135c4b4e0fa | 任务唯一标识符 |
level | String | info | 日志等级 |
content | String | hello | 内容 |
gmtCreate | String | 2020-04-28 13:08:39 | 创建时间 |
示例
请求示例:
https://console-rpa.aliyun.com/rpa/openapi/task/queryTaskLogs?<公共请求参数>
&taskId=3226a05a-98b9-4d48-8529-b8fb7e4561c6
¤tPage=1
&pageSize=1
返回示例:
{
"requestId":"d895f93d-52f0-4020-83b4-a08f6910aadf",
"success":true,
"code":0,
"msg":"调用成功",
"msgCode":"result.success",
"data":[
{
"taskId":"e6104c63-c7a3-4f56-b81a-8135c4b4e0fa",
"level":"info",
"content":"hello",
"gmtCreate":"2020-04-28 13:08:39"
}
],
"pager":{
"currentPage":1,
"totalPage":5,
"pageSize":1,
"total":5,
"limit":1,
"offset":0
}
}
文档内容是否对您有帮助?