获取单场会议的参会记录

获取单场会议的参会记录

1. 接口描述

接口名称:

/confopenapi/conference/report/getReportDatas

发送方式:

POST

参数格式:

accept: application/json;content-type: application/json

2. 输入参数

Http Header

参数名 必选 类型 说明
token 接口调用鉴权参数 也可以放在http body中

Http Body

参数名 必选 类型 说明
eventId int 要获取哪场会议的参会记录就传递该场会议的eventId
userId int 该场会议的主持人的userId

传参示例

{
"userId": 88610840,
"eventId":613399
}

3. 返回参数

参数名 类型 说明
stauts int64 0:成功,其他值:失败
eventId string 会议Id
title string 会议标题
hostId string 主持人Id
hostName string 主持人姓名
startTime string 会议开始时间
endTime string 会议结束时间
name string 参会人名字
mobile string 参会人手机
email string 参会人邮箱
role int 参会角色 0:参会人,1:主持人
onlineTime string 最早入会时间
offlineTime string 最后离会时间
times int 入会次数
watchDuration string 入会时长
deviceType string 从什么端入会的,例如:Windows
ip string 用户入会ip地址或者电话,如果用户数据端入会后使用电话语音,还包含了入会的电话号码:“183.186.246.249 17694879663”,如果用户使用电话入会:“17694879663”,显示电话号码,如果用户使用电脑语音,显示ip地址“183.186.246.249”

返回示例

{
    "status": 0,
    "result": [
        {
            "conferenceId": "239794753",
            "hostId": 88610840,
            "hostName": "pei",
            "eventId": 613399,
            "title": "pei%E7%9A%84%E4%BC%9A%E8%AE%AE",
            "startTime": "2022-11-18 19:00:00",
            "endTime": "2022-11-18 20:00:00",
            "name": "pxytest221109",
            "onlineTime": "2022-11-18 11:25:48",
            "offlineTime": "2022-11-18 17:57:33",
            "mobile": "-",
            "email": "pxytest221109@pxytest.com",
            "watchDuration": "00:02:07",
            "ip": "10.255.128.40",
            "deviceType": "Windows",
            "times": 2,
            "roleId": 0
        },
        {
            "conferenceId": "239794753",
            "hostId": 88610840,
            "hostName": "pei",
            "eventId": 613399,
            "title": "pei%E7%9A%84%E4%BC%9A%E8%AE%AE",
            "startTime": "2022-11-18 19:00:00",
            "endTime": "2022-11-18 20:00:00",
            "name": "pei",
            "onlineTime": "2022-11-18 11:25:28",
            "offlineTime": "2022-11-18 11:26:20",
            "mobile": "11232131223",
            "email": "pxytest34@pxy.quanshi.com",
            "watchDuration": "00:00:52",
            "ip": "192.168.12.12",
            "deviceType": "Windows",
            "times": 1,
            "roleId": 1
        }
    ],
    "request_id": "8da0d5ef-d06d-4cee-97cc-2c6a1645ad8b",
    "reqid": "confopenapiserver-192.168.12.12-1669077178.960874500.81",
    "timestamp": 1669077178965,
    "request_duration": "224.5624ms"
}

*返回示例 会议不存在 *

{
    "status": 50104,
    "result": null,
    "msg": "getConferenceInfo failed",
    "request_id": "confopenapiserver-192.168.12.12-1669077512.94528100.81",
    "reqid": "confopenapiserver-192.168.12.12-1669077512.94528100.81",
    "timestamp": 1669077512095,
    "request_duration": "10.9718ms"
}