获取单场会议的参会记录数据
获取单场会议的参会记录数据
1. 接口描述
接口名称:
/confopenapi/conference/report/getReportDatas/v2
发送方式:
POST
参数格式:
accept: application/json;content-type: application/json
2. 输入参数
Http Header
| 参数名 | 必选 | 类型 | 说明 |
|---|---|---|---|
| token | 是 | 接口调用鉴权参数 | 也可以放在http body中 |
Http Body
| 参数名 | 必选 | 类型 | 说明 |
|---|---|---|---|
| eventId | 是 | int | 会议ID |
传参示例
{
"eventId":613399
}
3. 返回参数
| 参数名 | 类型 | 说明 |
|---|---|---|
| stauts | int | 状态码 |
| result | json | 返回数据 |
| timestamp | int64 | 时间戳 |
| request_id | string | 请求ID |
result 参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| interaction | json | 互动端入会明细, 从全时客户端入会人员明细, 同一个人多次入会, 有多条明细记录 |
| tempConfenceList | json | 临时会议列表 |
interaction 参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| name | string | 参会人名字 |
| mobile | string | 参会人手机 |
| string | 参会人邮箱 | |
| role | int | 参会角色 0:参会人,1:主持人 |
| onlineTime | long | 入会时间 |
| offlineTime | long | 离会时间 |
| deviceType | string | 从什么端入会的,例如:Windows |
| ip | string | 用户入会ip |
| tempConferenceId | string | 临时会议ID |
tempConfenceList 参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| tempConferenceId | string | 临时会议ID |
| realStartTime | string | 临时会议开始时间 |
| realEndTime | string | 临时会议结束时间 |
返回示例
{
"status": 0,
"result": {
"interaction": [
{
"name": "mike",
"onlineTime": 1763452425,
"offlineTime": 1763453000,
"mobile": "+86-11232131223",
"email": "pxytest34@pxy.quanshi.com",
"ip": "10.255.128.40",
"deviceType": "PC",
"roleId": 1,
"tempConferenceId": "54017"
},
{
"name": "mike",
"onlineTime": 1763459112,
"offlineTime": 0,
"mobile": "+86-11232131223",
"email": "pxytest34@pxy.quanshi.com",
"ip": "10.255.128.40",
"deviceType": "PC",
"roleId": 1,
"tempConferenceId": "54019"
}
],
"tempConfenceList": [
{
"tempConferenceId": "54017",
"realStartTime": "2025-11-18 15:53:45",
"realEndTime": "2025-11-18 16:03:20"
},
{
"tempConferenceId": "54019",
"realStartTime": "2025-11-18 17:45:12",
"realEndTime": "2025-11-18 17:46:49"
}
]
},
"msg": "success",
"request_id": "confopenapiserver-3232248341-1763459218.883920500.887",
"reqid": "confopenapiserver-3232248341-1763459218.883920500.887",
"timestamp": 1763459218883,
"request_duration": "407.4769ms"
}


