Appearance
简要描述
- 电话会议-会议列表查询(近一周内)
请求URL
https://open.gangtise.com/application/open-meeting/cnfr/getList
请求方式
- POST
请求头
请求头 | 类型 | 说明 |
---|---|---|
Authorization | String | accessToken,通accessToken接口获取 |
参数说明
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
pageNum | 是 | Integer | 页数,默认为0 |
pageSize | 是 | Integer | 每页数量 |
startTime | 否 | Long | 起始时间 |
endTime | 否 | Long | 结束时间 |
partyIds | 否 | List<String> | 牵头机构 |
blockIds | 否 | List<Integer> | 行业id |
categorys | 否 | List<String> | 会议分类 |
status | 否 | Integer | 是否发布 1:草稿 17:发布 |
ids | 否 | List | 根据会议id查询会议信息 |
processList | 否 | List | 会议状态列表 |
topicList | 否 | List | 会议标题 |
securityIdList | 否 | List<String> | 上市公司股票代码列表 |
summaryStatus | 否 | Integer | 会议摘要状态 0:无摘要 1:摘要草稿状态 17:摘要已发布 |
请求示例
{
"startTime": 1697501300000,
"endTime": 1697501500000,
"pageNum": 1,
"pageSize": 10,
"partyIds": ["C100000008","C000000000","C100000047"],
"blockIds": [100800121],
"categorys": [3],
"status": 1,
"ids": [40041],
"processList": [2],
"topicList": ["银行"],
"securityIdList": ["600016.SH"],
"summaryStatus": 0
}
返回示例
{
"code": "000000",
"msg": "操作成功",
"status": true,
"data": {
"pageNum": 1,
"pageSize": 10,
"totalPage": 1,
"total": 1,
"list": [
{
"id": 40041,
"cnfrNum": "37756791",
"cnfrTime": 1697501400000,
"topic": "☎国君银行张宇团队|民生银行、成都银行线上交流",
"partyId": "C100000047",
"cnfrPhone": "01057304357",
"partyName": "国泰君安",
"category": 3,
"categoryStmt": "行业分析",
"blockId": 100800121,
"blockName": "银行",
"securityId": "600016.SH",
"securityAbbr": "民生银行",
"conferee": "",
"cnfrPswd": "",
"permission": 1,
"permissionStmt": null,
"process": 2,
"processStmt": null,
"entryTime": 1683873604000,
"updateTime": 1683873604000,
"isDelete": null,
"summary": null,
"cnfrCreateMethod": 1,
"cnfrFileName": null,
"cnfrFileSize": null,
"status": 1,
"reseedingProcess": 0,
"accountId": null,
"liveUrl": null,
"summaryStatus": 0,
"recordFlag": 1
}
]
}
}
返回参数说明
参数名 | 类型 | 说明 |
---|---|---|
id | Integer | ID,系统自增 |
cnfrNum | String | 会议号 |
cnfrTime | Integer | 会议时间 |
topic | String | 会议主题 |
partyId | String | 机构id |
partyName | String | 机构简称 |
category | Integer | 会议类别 |
categoryStmt | String | 会议类别说明 |
blockId | Integer | 所属行业 |
blockName | String | 板块名称 |
securityId | String | 上市公司代码 |
securityAbbr | String | 上市公司 |
conferee | Strring | 参会人员 |
cnfrPswd | String | 会议密码 |
permission | Integer | 会议权限 1:公开会议 2:私密会议 |
permissionStmt | String | 会议权限说明 |
process | Integer | 会议进程: 1:会议中 2:未开始 3:录制成功 4:录制失败 5:请求中 6:识别中 7:上传完成 8:初始化 9:录制异常 10:待识别 |
processStmt | String | 会议进程说明 |
entryTime | Long | 入库时间 |
updateTime | Long | 更新时间 |
cnfrPhone | String | 参会电话 |
cnfrCreateMethod | Integer | 会议类型 1:电话会议 2:上传会议 3:腾讯会议 4:进门财经 5:zoom会议 |
summary | String | 会议摘要 |
cnfrFileName | String | 会议音视频文件名称 |
cnfrFileSize | String | 会议音视频文件大小 |
isDelete | Integer | 是否删除 0:正常 1:删除 |
status | Integer | 数据状态 1:草稿 17:发布状态 |
reseedingProcess | Integer | 复播状态 0:未复播 1:已复播 -1:无需复播 |
liveUrl | String | 直播连接 |
summaryStatus | Integer | 摘要的状态 0:无摘要 1:摘要草稿 17:正式摘要 |
recordFlag | Integer | 是否录制 0:不录制 1:录制 |
调用示例
CnfrForecastRequest cnfrForecastRequest = new CnfrForecastRequest();
List<Integer> cnfrCreateMethods = new ArrayList<>();
cnfrCreateMethods.add(CnfrCreateMethodType.JINMEN.getCode());
cnfrForecastRequest.setCnfrCreateMethods(cnfrCreateMethods);
List<CnfrInfo> cnfrInfoList = CnfrClient.getForecastList(accessToken.getAccess_token(),cnfrForecastRequest);
System.out.println(cnfrInfoList.size());
备注
- 更多返回错误代码请看首页的错误代码描述