接口描述:调用本接口查询刷新任务
请求方式:get
请求路径:/refresh-task/query-refresh-task
使用说明: 单个用户一分钟限制调用10000次,并发不超过100
请求参数说明:
参数 | 类型 | 是否必传 | 名称 | 描述 |
---|---|---|---|---|
type | int | 否 | 查询方式 | 0(按照时间查询);1(按照submit_id查询);2(按照task_id查询)。默认为0 |
start_time | int | 否 | 开始时间戳 | 起始时间,时间戳(秒),type=0时,必填 |
end_time | int | 否 | 结束时间戳 | 结束时间,时间戳(秒),type=0时,必填 |
submit_id | string | 否 | 提交id | 刷新提交id,type=1时,必填 |
task_id | string | 否 | 任务id | 刷新任务id,type=2时,必填 |
url | string | 否 | 模糊查询 | 比如url为http://www.url.ctyun.cn/1.jpg,那么入参url=com或url=1.jpg可查询到 |
task_type | int | 否 | 刷新类型 | 筛选项,1(url);2(目录dir);3(正则匹配re) |
page | int | 否 | 页数 | 默认1 |
page_size | int | 否 | 每页条数 | 默认50, 最大300 |
返回参数说明:
参数 | 类型 | 是否必传 | 名称及描述 |
---|---|---|---|
code | int | 是 | 状态码 |
message | string | 是 | 描述信息 |
total | int | 否 | 总条数 |
page | int | 否 | 页数 |
page_size | int | 否 | 本页条数 |
result | list<objct> | 否 | 返回结果数组 |
result[*].url | string | 否 | 刷新url |
result[*].submit_time | string | 否 | 提交时间 |
result[*].type | string | 否 | 任务类型,url;dirs |
result[*].status | string | 否 | 任务执行状态,processing(进行中); completed(成功); failed(失败) |
示例:
请求路径:https://cdnapi-global.ctapi.ctyun.cn/refresh-task/query-refresh-task
请求:https://cdnapi-global.ctapi.ctyun.cn/refresh-task/query-refresh-task?type=8&start_time=1661500835&end_time=1664179235
返回结果:
{ "code": 10000, "message": "success", "total": 1, "page": 1, "page_size": 1, "result": [ { "submit_time": "2018-08-01 12:00:00.000000", "type": "url", "url": "http://www.test.ctyun.cn/test.ts", "status": "completed" } ] }
错误码请参考:参数code和message含义