Appearance
简要描述
- 电话会议-会议预告查询
请求URL
https://open.gangtise.com/application/open-meeting/cnfr/forecast/list
请求方式
- POST
请求头
请求头 | 类型 | 说明 |
---|---|---|
Authorization | String | accessToken,通accessToken接口获取 |
参数说明
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
cnfrCreateMethods | 否 | List<Integer> | 查询的会议预告类型 1:电话会议 2:上传会议 3:腾讯会议 4:进门财经 5:Zoom |
请求示例
{
"cnfrCreateMethods": [1,3,4]
}
返回示例
{
"code": "000000",
"msg": "操作成功",
"status": true,
"data": [
{
"id": 40228,
"cnfrNum": "1",
"cnfrTime": 1688799600000,
"topic": "CHATGPT对冶金行业影响",
"partyId": "C100000006",
"cnfrPhone": "4008823823",
"partyName": "国金证券",
"category": 1,
"categoryStmt": "公司点评",
"blockId": 100800103,
"blockName": "有色金属",
"securityId": null,
"securityAbbr": null,
"conferee": "",
"cnfrPswd": "1",
"permission": 1,
"permissionStmt": null,
"process": 2,
"processStmt": null,
"entryTime": 1685586577000,
"updateTime": 1685586577000,
"isDelete": null,
"summary": null,
"cnfrCreateMethod": 1,
"cnfrFileName": null,
"cnfrFileSize": null,
"status": 17,
"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());
备注
- 更多返回错误代码请看首页的错误代码描述