ERP APIERP 数据
GET
/erp/event/get_List按应用、事件类型、用户、IP 和时间范围分页查询事件日志。
Authorization
bearerAuth AuthorizationBearer <token>
In: header
Query Parameters
app_key*string
应用标识。
event_type?string
事件类型。
uid?string
业务用户 ID。
username?string
业务用户名。
ip?string
IP 地址,支持模糊查询。
start_time?string
开始时间,格式 YYYY-MM-DD HH:mm:ss。
end_time?string
结束时间,格式 YYYY-MM-DD HH:mm:ss。
page?number
页码,默认 1。
pageSize?number
每页数量,默认 20。
Response Body
application/json
curl -X GET "https://example.com/erp/event/get_List?app_key=string"{ "code": 0, "message": "获取埋点日志列表", "data": { "page": 1, "pageSize": 20, "total": 1, "items": [] }, "time": 1779502528}