特殊渠道值列表
更新时间:2023-03-10
特殊渠道值列表
1、接口地址:(GET) {IP}:{PORT}/open/v2/channel/special/value
2、入参(写入到param中)
参数名 | 类型 | 是否可空 | 备注 |
---|---|---|---|
pn | int | 是 | 当前页数 |
ps | int | 是 | 每页数量 |
channel | string | 是 | 筛选code组合,将需要筛选的code按维度创建顺序以“,”隔开 |
3、返回值
参数名 | 类型 | 父节点 | 备注 |
---|---|---|---|
code | int | HTTP状态码 | |
time | long | 时间 | |
msg | string | 状态信息 | |
data | T | 返回数据 | |
total | int | data | 数据数量 |
ps | int | data | 每页数量 |
pn | int | data | 当前页数 |
list | list | data | 数据列表 |
id | string | list | 特殊渠道值ID |
dimensionValueList | list | list | 渠道维度值列表 |
dimensionName | string | dimensionValueList | 渠道维度名称 |
dimensionCode | string | dimensionValueList | 渠道维度编码 |
name | string | dimensionValueList | 渠道维度值名称 |
code | string | dimensionValueList | 渠道维度值编码 |
status | int | list | 渠道状态标识,0-上线;1-下线 |
responseType | int | list | 无答案时回复内容 0: 无答案 1:通用答案 |
version | int | list | 版本号 |
示例:
{
"code":200,
"time":1567998660176,
"msg":"OK",
"data":{
"total": 1,
"pn": 0,
"ps", 20,
"list":[
{
"id": "00ace67f-43c4-43e0-a7fa-b436af338d99",
"dimensionValueList": [
{
"dimensionName": "地域",
"dimensionCode": "DOMAIN_",
"name": "中国",
"code": "CHINA_"
}
],
"status": 0,
"responseType": 1,
"version": 0
}
]
}
}