获取会议状态和会中人数
查询会议是否进行中, 会议是否可用, 会中人数
1. 接口描述
接口名称:
/conference/conference/getConfStatus
发送方式:
POST
参数格式:
accept: application/json;content-type: application/json
2. 输入参数
Http Header
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
token | 是 | 接口调用鉴权参数 | 也可以放在http body中 |
Http Body
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
appId | 是 | int | 应用ID,请传6 |
userId | 是 | int | 主持人userId |
conferenceId | 是 | string | 会议ID |
4. 返回参数
参数名 | 类型 | 说明 |
---|---|---|
status | int | 0:成功,非0失败 |
result | json字符串 | 返回结果 |
confStatus | int | 会议状态 0:会议不存在(被删除或者会议ID错误) 1:会议已创建 (未召开的会议, 以及会议预约时间12个小时内,已结束的会议,状态均为 1) 2:会议已开始(会中有人) 4:会议已结束 (只有超过会议预约时间12个小时,并且以结束的会议,才会变为已结束状态 4), 会议已不可用 |
attendees | int | 参会人个数 |
pwdType | int | 密码类型,0:固定密码,1:动态密码 |
mayJoin | int | 是否可以入会,0:否,1:是 |
advanceHours | string | 可以提前入会的时间,单位小时 |
返回示例
{
"status": 0,
"result": {
"confStatus": 5,
"attendees": 0,
"pwdType": 1,
"mayJoin": 0,
"advanceHours": "2"
},
"msg": "conferenceserver-192.168.35.230-1599532068.812942156.86",
"request_id": "confopenapiserver-192.168.22.47-1599532068.843353000.81",
"timestamp": 1599532068843,
"callSeq": "",
"content_type": "application/json",
"request_duration": "443.767051ms"
}
备注
- 更多返回错误代码请看首页的错误代码描述