分页获取API信息
GET
/{adminPath}/selectApiByPage
最后修改时间:2023-08-10 03:00:47
责任人:mryunqi
请求参数
Path 参数
adminPath
string
后台路径
示例值:
admin
Query 参数
page
integer
页码
示例值:
1
size
integer
每页数据量
示例值:
20
Header 参数
Authorization
string
可选
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET '/admin/selectApiByPage?page=1&size=20' \
--header 'Authorization;'
返回响应
🟢200成功
application/json
Body
code
integer
必需
message
string
必需
data
object
必需
records
array [object {5}]
必需
total
integer
必需
size
integer
必需
current
integer
必需
orders
array[string]
必需
optimizeCountSql
boolean
必需
searchCount
boolean
必需
maxLimit
null
必需
countId
null
必需
pages
integer
必需
示例
{
"code": 20000,
"message": "请求成功",
"data": {
"records": [
{
"id": 1,
"appid": "1687276783870",
"appkey": "e280bdf9e8914fd597f850d0fcdf162b42",
"info": null,
"createDate": null
},
{
"id": 2,
"appid": "1690208651216",
"appkey": "23ba5aa474fa416a99a404a02065f29849",
"info": "接口2",
"createDate": 1690208651216
}
],
"total": 2,
"size": 20,
"current": 1,
"orders": [],
"optimizeCountSql": true,
"searchCount": true,
"maxLimit": null,
"countId": null,
"pages": 1
}
}