文档
测试

活动详情 文件预览接口

GET
http://IP:PORT/campaignLeads/displayLeadsPackageInfoByType

接口描述

文件预览接口 type 区分 1、转换线索 2、过期线索

请求参数

multipart/form-data
参数名
类型
描述
必填
type
int
文件类型 1、转换线索 2、过期线索
必填
id
int
活动id 主键
必填
startNum
int
分页起始偏移
必填
count
int
分页大小
必填
fileName
String
上传文件后返回文件名称
必填
uniqueKey
String
上传文件后返回的文件唯一标识符
必填
campaignCode
String
活动Code
必填
uploadFileId
int
上传文件返回id
必填
format
int
文件格式列 1、2、3 文件列
必填

响应参数

参数名
类型
描述
必填
code
string
示例:200
必填
msg
string
示例:成功
必填
data
object
数据字典
必填
records
array
数据列表
必填
vin17
string
示例:qqqqqqqqqqqqqqqqq
必填
dealer
object
示例:null
必填
leadsInfo
object
示例:null
必填
leadsCreateDate
object
示例:null
必填
leadsExpireDate
string
示例:2022-01-06
必填
leadsStatus
string
示例:已过期
必填
pushDate
object
示例:null
必填
total
int
示例:1
必填
size
int
示例:20
必填
current
int
示例:1
必填
pages
int
示例:1
必填

说明 / 示例

###### 数据可以使用json 工具方便看结构 # 转化线索预览响应 { "code": "200", "data": { "current": 1, "pages": 1, "records": [ { "convertDate": "2012-12-12", "convertDealer": "33123", "dealer": "33123", "leadsCreateDate": "2012-12-12", "leadsExpireDate": "2012-12-12", "leadsStatus": "本店转化", "pushDate": "2012-12-12", "vin17": "LJZTESTBDC0000002" } ], "size": 20, "total": 20 }, "msg": "成功" } # 过期线索文件 响应 { "code": "200", "msg": "成功", "data": { "records": [ { "vin17": "qqqqqqqqqqqqqqqqq", "dealer": null, "leadsInfo": null, "leadsCreateDate": null, "leadsExpireDate": "2022-01-06", "leadsStatus": "已过期", "pushDate": null } ], "total": 1, "size": 20, "current": 1, "pages": 1 } }