简要描述:
- 获取接口使用记录列表
请求URL:
POST/plugin.yunqian-api.api.api-log.query-list
参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
page | 否 | int | 页码 |
pagesize | 否 | int | 默认10条 |
id | 否 | int | id |
name | 否 | string | 接口名称 |
apiRoute | 否 | string | 接口地址 |
createdAtStart | 否 | int | 充值时间start |
createdAtEnd | 否 | int | 充值时间end |
hasResponse | 否 | int | 是否返回接口数据。0-否;1-是。默认0 |
返回示例:
正确时返回:
{
"result": 1,
"msg": "成功",
"data": {
"total": 2,
"per_page": 10,
"current_page": 1,
"last_page": 1,
"next_page_url": null,
"prev_page_url": null,
"from": 1,
"to": 2,
"data": [
{
"id": 32,
"name": "皮肤分析",
"apiRoute": "",
"responseTime": "812.000",
"createdAt": "2020-10-31 14:00:35",
"apiItemId": 1,
"apiItemDesc": "皮肤分析",
"apiResponse": ""
},
{
"id": 33,
"name": "皮肤分析",
"apiRoute": "",
"responseTime": "327.000",
"createdAt": "2020-10-31 14:50:26",
"apiItemId": 1,
"apiItemDesc": "皮肤分析",
"apiResponse": ""
}
]
}
}
错误时返回:
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
id | int | id |
name | string | 接口名称 |
apiRoute | string | 接口地址 |
responseTime | int | 接口响应时间(毫秒) |
createdAt | string | 请求时间 |
apiResponse | string | 接口返回的数据 |
备注:
url修改 页码入参改成page,和商城一样 分页出参改成现在商城一样的了 列表数据在data中的data里 createdAt改成字符串类型
- 更多返回错误代码请看首页的错误代码描述