下载单场会议会后报告文件

下载单场会议会后报告文件

1. 接口描述

接口名称:

/confopenapi/event/report/url

发送方式:

POST

参数格式:

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

2. 输入参数

Http Header

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

Http Body

参数 类型 必须 说明
eventId Long 会议ID

输入示例1: 获取会议录制

{
    "eventId": 551014
}

3. 输出参数

参数 类型 说明
timeStamp Long 返回时间(时间戳,单位毫秒)
requestId String 请求ID(在接口异常时, 需提供请求ID)
code Int 返回的状态码
msg String 当返回结果的状态码不为200时,包含的错误信息
result Json 返回数据

result 参数说明

参数 类型 说明
eventId Long 会议ID
reports Array 下载地址文件列表

reports 参数说明

参数 类型 说明
title String 会议标题
startTime Long 开始时间(单位:秒)
endTime Long 结束时间(单位:秒)
reportUrl String 录制流媒体在线播放地址

输出示例

{
    "timeStamp": 1645437961557,
    "code": 0,
    "msg": "Successfully to get the event record data!",
    "result": {
        "eventId": 551014,
        "reports": [
            {
                "endTime": 1645429924,
                "startTime": 1645428897,
                "reportUrl": "https://uniform.quanshi.com/rest/conference/report/download/1868782592",
                "title": "录制测试",
            }
        ]
    },
    "requestId": "106_20220221_180559_1645437959691"
}