- v1
- auth
- route
- system-manage
- miniapp
查看日志列表
POST
/api/v1/system-manage/logs/all
v1系统管理日志管理
请求参数
Header 参数
Authorization
string
可选
默认值:
Bearer {{token}}
Body 参数application/json
current
integer
页码
size
integer
每页数量
logType
string
日志类型
byUser
null
关联用户
logDetailType
null
日志详细
requestUrl
null
请求URL
timeRange
array[string]
创建时间
responseCode
null
业务状态码
xRequestId
null
x-request-id
示例
{
"current": 1,
"size": 20,
"logType": "2",
"byUser": null,
"logDetailType": null,
"requestUrl": null,
"timeRange": [
"2024-12-23 00:00:00",
"2024-12-23 23:59:59"
],
"responseCode": null,
"xRequestId": null
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/v1/system-manage/logs/all' \
--header 'Authorization: Bearer {{token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"current": 1,
"size": 20,
"logType": "2",
"byUser": null,
"logDetailType": null,
"requestUrl":null,
"timeRange": ["2024-12-23 00:00:00","2024-12-23 23:59:59"],
"responseCode": null,
"xRequestId": null
}'
返回响应
🟢200成功
application/json
Body
code
string
必需
msg
string
必需
data
object
必需
records
array [object {7}]
必需
total
integer
必需
current
integer
必需
size
integer
必需
示例
{
"code": "0000",
"msg": "OK",
"data": {
"records": [
{
"logDetailType": null,
"id": 75,
"createTime": "2024-05-18 15:29:32",
"logType": "1",
"requestUrl": "http://127.0.0.1:9999/api/v1/auth/getUserInfo",
"responseCode": "0000",
"logUser": "Request"
},
{
"logDetailType": null,
"id": 73,
"createTime": "2024-05-18 15:29:24",
"logType": "1",
"requestUrl": "http://127.0.0.1:9999/api/v1/auth/login",
"responseCode": "0000",
"logUser": "Request"
}
],
"total": 2,
"current": 1,
"size": 10
}
}
🟠422Validation Error
修改于 2024-12-23 07:38:12