文档
测试

获取开屏配置列表

GET
https://portal.dev2.supwisdom.com/portal-api/v1/appLaunchScreen/getList?startDate=&endDate=

接口描述

获取开屏页列表的数据 可见范围字段未写

请求头

参数名
类型
描述
必填
x-id-token
string
用户token
必填

请求参数

参数名
类型
描述
必填
startDate
string
开始日期,格式:yyyy-mm-dd 00:00:00
可选
endDate
string
结束日期,格式:yyyy-mm-dd 23:59:59
可选

响应参数

参数名
类型
描述
必填
code
int
0:成功;-1:失败;
必填
message
string
接口访问状况信息
必填
data
array
配置列表信息
必填
id
string
唯一标识
必填
contentUrl
string
开屏页的内容,一张图片或一个视频的url
必填
redirectUrl
string
跳转地址url
必填
creator
string
创建人,如:王小明
必填
frequencyType
string
开屏页的展示类型:不限频次(infinity),有限次数(limited)
必填
frequency
number
开屏页展示有限次数的具体频次
必填
duration
number
开屏内容的持续时长
必填
skipDuration
number
开屏页内容的可跳过时长
必填
validDateType
string
有效时间类型: 永久有效(permanent),自定义(custom)
必填
customValidDateType
string
自定义有效时间类型; include:包含; exclude:不包含,排除
必填
customValidStartDate
string
自定义开始时间 格式:yyyy-mm-dd 00:00:00
必填
customValidEndDate
string
自定义结束时间 格式:yyyy-mm-dd 23:59:59
必填
sortNumber
number
排序号,默认是0
必填
accessRights
string
访问权限,格式:权限名称
必填

说明 / 示例

```json { code: 0, message: "获取成功", data:{ id: "001", contentUrl: "https://sixpointseven-sw.paas.newcapec.cn/portal-minio/service/1686120629188_成绩复核申请@3x.png", redirectUrl: "www.baidu.com", creator: "创建人", frequencyType: "limited", frequency: 2, duration: 3, skipDuration: 2, validDateType: "custom", customValidDateType: "include", customValidStartTime: "2023-10-10 00:00:00", customValidEndTime: "2023-11-10 23:59:59", accessRights: "管理员,测试部门" } }