查询历史会议列表

更新时间: 2024/01/10 17:29:31
说明:

访问限制:300次/min

如果有更高的访问需求,请联系对接的商务接口人。

  • url

    https://www.cloudroom.com/CLOUDROOM-SERVER/v2/conference/history/list?searchUserId={searchUserId}&startTime={startTime}&endTime={endTime}&current={current}&size={size}

  • 请求方式GET

  • 请求参数

    参数名 必填 类型 描述
    searchUserId Long 查询用户会议的用户id
    startTime Long 开始时间(时间戳,单位:秒)
    endTime Long 结束时间(时间戳,单位:秒,时间间隔最大一年)
    current Integer 当前页码(默认为1,超出范围使用默认值)
    size Integer 每页数量(默认为20,最大值为100,超出范围使用默认值)
  • 请求示例

    https://www.cloudroom.com/CLOUDROOM-SERVER/v2/conference/history/list?current=1&size=20
    
  • 返回参数

    参数名 类型 描述
    total Integer 总数
    remaining Integer 是否还有未拉取的数据(0:否;1:是)
    records Object[] 历史会议列表
    • 会议列表详情
    参数名 类型 描述
    confId Long 会议号
    times Integer 次数(从0开始,标识相同会议号的第几场会议)
    subject String 会议主题
    confType Integer 会议类型(0:非预约会议;1:预约会议)
    startTime Long 开始时间(时间戳,单位:秒)
    endTime Long 结束时间(时间戳,单位:秒)
    hostName String 主持人姓名
    members Integer 参会人数
    periodType Integer 周期类型(0:非周期会议;1:每天;2:每个工作日;3:每周;4:每两周;5:每月)
  • 返回参数示例

    {
        "total": 1,
        "records": [
            {
                "confId": 12345678,
                "subject": "会议主题",
                "confType": 1,
                "scheduleTime": 1616655277,
                "scheduleEndTime": 0,
                "startTime": 1616655277,
                "endTime": 0,
                "hostName": "云屋科技",
                "members": 0,
                "confCode": "abcdef",
                "periodType": 0,
                "times":0
            }
        ]
    }