获取会议互动卡列表

1. 接口描述

接口名称:

/eventopenapi/event/interact/template/conf/list

发送方式:

POST

参数格式:

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

2. 输入参数

参数 类型 必须 说明
token String 统一鉴权token
eventId Long 直播会议ID
templateType Int 模板类型(默认值10002: 抢答)

3. 输出参数

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

data 参数说明

参数 类型 说明
id Long 互动卡模板ID
title String 互动卡模板标题
type INt 模板类型 10002: 抢答
isShow Int 是否在用户模板列表中显示,0: 显示; 1: 不显示
customerCode String 客户编码
data String 具体的模板数据
isTop Int 是否置顶
topAt Long 置顶时间(单位:毫秒)
createdAt LOng 创建时间(单位:毫秒)
modifyAt Long 更新时间(单位:毫秒)
creator Json 创建者

creator 参数说明

参数 类型 说明
userId Long 用户UMSID

4. 示例

输入示例

{
    "token":"5d41c4ac806c6440eb6aa8e071115f2b",
    "eventId": 569970,
    "templateType": 10002
}

输出示例

{
    "timeStamp": 1656405103807,
    "code": 200,
    "msg": "Successfully to get the event interact templates of the confer!",
    "data": [
        {
            "id": 52178,
            "title": "第一个考试题",
            "type": 10002,
            "isShow": null,
            "customerCode": "153857",
            "creator": {
                "tempUserId": "",
                "accId": "",
                "userId": 88408809,
                "avatar": "",
                "name": "",
                "clientType": 0,
                "role": "",
                "phone": "",
                "email": "",
                "group": "",
                "viewerId": ""
            },
            "data": "{\"surveyName\":\"第一个考试题\",\"surveyType\":4,\"surveyCover\":\"\",\"incognito\":0,\"questionList\":[{\"questionTitle\":\"1+1等于几?\"}]}",
            "isTop": 0,
            "topAt": 0,
            "info": null,
            "createdAt": 1656399963709,
            "modifyAt": 1656399963709
        }
    ],
    "requestId": "10.255.0.106_20220628_163143_1656405103749"
}