文档
测试
POST

请求参数

参数名
类型
描述
必填
queryStartDate
String
查询起始日期(yyyy-MM-dd)
必填
queryEndDate
String
查询截止日期(yyyy-MM-dd)
必填
bu
Integer
bu
必填
channelIdBig
Integer
大渠道ID
必填

响应参数

参数名
类型
描述
必填
code
Integer
响应码值,成功:0
必填
message
String
响应说明
必填
data
Object
响应体
必填
nameExceptionList
List<Object>
姓名异常
必填
exceClassifyType
String
异常类型
必填
exceptionSum
Integer
异常数量
必填
mobileExceptionList
List<Object>
手机号异常
必填
exceClassifyType
String
异常类型
必填
exceptionSum
Integer
异常数量
必填
ipExceptionList
List<Object>
Ip 异常
必填
exceClassifyType
String
异常类型
必填
exceptionSum
Integer
异常数量
必填
callExceptionList
List<Object>
通话异常
必填
exceClassifyType
String
异常类型
必填
exceptionSum
String
异常数量
必填
channelTotal
Integer
总量
必填
top1TGI
Double
top1TGI
必填
top3TGI
Double
to3TGI
必填

说明 / 示例

-- 全部渠道 ``` { "queryStartDate":"2020-06-02", "queryEndDate":"2020-06-05" } ``` 响应报文: ``` ``` -- 大渠道 请求参数: ``` { "queryStartDate":"2020-06-02", "queryEndDate":"2020-06-05", "channelIdBig":12 } ``` 响应报文: ``` { "code": 0, "message": "看板数据", "data": { "nameExceptionList": [ { "exceClassifyType": "EMPTY", "exceptionSum": 8767, "ptDate": null, "pt": null }, { "exceClassifyType": "REPEAT", "exceptionSum": 7605, "ptDate": null, "pt": null }, { "exceClassifyType": "SENSITIVE", "exceptionSum": 769, "ptDate": null, "pt": null }, { "exceClassifyType": "SUSPECTED_STAR", "exceptionSum": 24279, "ptDate": null, "pt": null }, { "exceClassifyType": "TRUMP", "exceptionSum": 244, "ptDate": null, "pt": null } ], "mobileExceptionList": [], "ipExceptionList": [ { "exceClassifyType": "MOBILE_ERR", "exceptionSum": 1, "ptDate": null, "pt": null }, { "exceClassifyType": "NAME_ERR", "exceptionSum": 1, "ptDate": null, "pt": null }, { "exceClassifyType": "IP_TOP1", "exceptionSum": 1, "ptDate": null, "pt": null }, { "exceClassifyType": "IP_TOP3", "exceptionSum": 3, "ptDate": null, "pt": null } ], "callExceptionList": [ { "exceNum": 226, "exceClassifyType": "CONNECT" } ], "channelTotal": 13, "top1TGI": 124876.92307692308, "top3TGI": 124876.92307692308 } } ```