历史任务列表(积分用户可用)
GET
/open/task/list接口能力
分页查询所有历史任务
只有需要扣积分的任务才会记录。
积分扣除规则
调用此接口不消耗积分
请求参数
Query 参数
page_index
integer
可选
当前页码,默认值 1
示例值:
1
page_size
string
可选
当前每页数量,默认值 10
示例值:
10
Header 参数
Authorization
string
必需
此值可以在 开放平台(https://open.creator.nolibox.com) - 应用列表 - 操作中的"TOKEN"中获取。计算方式:"Basic " + Base64.encode(App Key:App Secret)
示例值:
Basic xxxxxxxxxx
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
状态码,0表示成功
msg
string
状态描述,当 code 不为0时,此字段返回具体错误详情
data
object
必需
page_index
integer
当前页码
page_size
integer
当前每页 limit
total
integer
总行数
list
array [object {8}]
任务列表
示例
{
"code": 0,
"data": {
"page_index": 1,
"page_size": 10,
"total": 141,
"list": [
{
"id": 52269634552297,
"type": 1,
"state": 2,
"query_code": "00fc35aa",
"trans_id": 971,
"notify_url": "https://www.nolibox.com/debug/callback",
"create_time": 1672121531,
"update_time": 1672121540
},
{
"id": 52244116406754,
"type": 1,
"state": 2,
"query_code": "2b0e334e",
"trans_id": 970,
"notify_url": "https://www.nolibox.com/debug/callback",
"create_time": 1672106328,
"update_time": 1672106385
},
{
"id": 52244082852322,
"type": 1,
"state": 2,
"query_code": "046518fa",
"trans_id": 969,
"notify_url": "https://www.nolibox.com/debug/callback",
"create_time": 1672106306,
"update_time": 1672106324
},
{
"id": 52041581855492,
"type": 2,
"state": 2,
"query_code": "wx_12023448",
"trans_id": 968,
"notify_url": "",
"create_time": 1671985606,
"update_time": 1671985769
},
{
"id": 52039719584516,
"type": 1,
"state": 3,
"query_code": "dr_111564",
"trans_id": 967,
"notify_url": "",
"create_time": 1671984491,
"update_time": 1671984498
},
{
"id": 52039400817412,
"type": 1,
"state": 3,
"query_code": "dr_111563",
"trans_id": 966,
"notify_url": "",
"create_time": 1671984308,
"update_time": 1671984318
},
{
"id": 52038612288260,
"type": 1,
"state": 2,
"query_code": "dr_111562",
"trans_id": 965,
"notify_url": "",
"create_time": 1671983830,
"update_time": 1671983855
},
{
"id": 52035693052676,
"type": 1,
"state": 3,
"query_code": "dr_111561",
"trans_id": 964,
"notify_url": "",
"create_time": 1671982097,
"update_time": 1671982098
},
{
"id": 51728250581590,
"type": 1,
"state": 2,
"query_code": "dr_111557",
"trans_id": 963,
"notify_url": "",
"create_time": 1671798845,
"update_time": 1671798854
},
{
"id": 51722965758550,
"type": 1,
"state": 2,
"query_code": "dr_111498",
"trans_id": 962,
"notify_url": "",
"create_time": 1671795692,
"update_time": 1671798492
}
]
},
"msg": "success"
}
最后修改时间: 2 年前