- WEB端
- 事件管理
- 大屏
- 字典管理
- 文件操作
- 角色相关
- 资源管理
- 权限管理
- 管理员
- 公共类
- 地址管理
- 组织管理
- 台账管理
- 用户相关
- 聚沙码管理
- 智能坐席
- 我的文件
- 执法设备
- 执法平台
- 班组管理
- 坐席分配
- 内部使用
- 小程序端
- 定时任务
- WebSocket
- 浙政钉相关
- WebSocket链接
查询重复预警事件详情【v2】
测试环境
https://eventsys-test-d-browser.gogen.cn/eventSys
测试环境
https://eventsys-test-d-browser.gogen.cn/eventSys
POST
https://eventsys-test-d-browser.gogen.cn/eventSys
请求参数
Body 参数application/json
areaCode
string | null
地址编码
type
integer | null
可选
year
integer | null
年份
month
integer | null
月份
day
integer | null
天
start
integer | null
可选
end
integer | null
可选
cipher
string | null
密码,导出所用
mobile
string | null
预警手机号
示例
{
"areaCode": "string",
"type": 0,
"year": 0,
"month": 0,
"day": 0,
"start": 0,
"end": 0,
"cipher": "string",
"mobile": "string"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://eventsys-test-d-browser.gogen.cn/eventSys/event/findRepeatHistory' \
--header 'Content-Type: application/json' \
--data-raw '{
"areaCode": "string",
"type": 0,
"year": 0,
"month": 0,
"day": 0,
"start": 0,
"end": 0,
"cipher": "string",
"mobile": "string"
}'
返回响应
🟢200成功
application/json
Body
status
boolean | null
可选
code
integer | null
可选
message
string | null
可选
exceMes
string | null
可选
requestId
string | null
可选
timestamp
integer | null
可选
result
object (HistoryEventVO)
可选
historyTotal
integer | null
历史事件总数
historyHandling
integer | null
可选
list
array[object (EventResultVO) {17}] | null
历史事件
示例
{
"status": false,
"code": 0,
"message": "",
"exceMes": "",
"requestId": "",
"timestamp": 0,
"result": {
"historyTotal": 0,
"historyHandling": 0,
"list": [
{
"id": "",
"eventNo": "",
"eventCategory": "",
"eventCategoryName": "",
"status": 0,
"supervised": false,
"description": "",
"handleTime": "",
"gmtCreate": "",
"areaName": "",
"longitude": 0.0,
"latitude": 0.0,
"repeated": false,
"voice": "",
"voiceId": "",
"source": ""
}
]
}
}
修改于 2024-04-09 02:14:53