获取业务模版详情
获取业务模版详情
1. 接口描述
接口名称:
/confopenapi/conference/template/detail
发送方式:
POST
参数格式:
accept: application/json;content-type: application/json
2. 输入参数
Http Header
| 参数名 | 必选 | 类型 | 说明 | 
|---|---|---|---|
| token | 是 | string | 接口调用凭证 | 
HttpBody
| 参数名 | 必选 | 类型 | 说明 | 
|---|---|---|---|
| btplId | 是 | int | 业务模版ID | 
传参示例
{ 
  "btplId":195704
}
3. 返回参数
| 参数名 | 类型 | 说明 | 
|---|---|---|
| status | int | 0:成功,非0失败, 查询的业务模版不存在, status = 9015 | 
| msg | string | 消息 | 
| result | Object | 数据内容 | 
| request_id | string | 请求ID | 
result 参数说明
| 参数名 | 类型 | 说明 | 
|---|---|---|
| id | int | 模版ID | 
| title | string | 模版名称 | 
| info | Object | 模版信息 | 
| data | Object | 模版信息 | 
| modifyAt | int | 模版修改时间 | 
| createdAt | int | 模版创建时间 | 
info 参数说明
| 参数名 | 类型 | 说明 | 
|---|---|---|
| status | int | 发布状态 0:未发布,1,已发布 | 
data 参数说明
| 参数名 | 类型 | 说明 | 
|---|---|---|
| confRoles | Object | 模版角色列表 | 
| confRules | Object | 模版规则 | 
| confTypes | Object | 会议类型 | 
confRoles 参数说明
| 参数名 | 类型 | 说明 | 
|---|---|---|
| roleId | int | 角色ID | 
| roleName | int | 角色名称 | 
| managerType | int | 角色管理身份类型 1 - 管理者(主持人); 2 - 辅助管理者(联席主持人); 3 - 普通参会人 | 
confRules 参数说明
| 参数名 | 类型 | 说明 | 
|---|---|---|
| conferenceset | Object | 会议级设置项 | 
conferenceset 参数说明
| 参数名 | 类型 | 说明 | 
|---|---|---|
| parJoinConfLogined | int | 是否参会人加入会议时必须登录才能入会(0:否,1:是) | 
| joinConfSelTag | int | 是否参会人加入会议时必须选择标签(0:否,1:是) | 
| waitingRoomSwitch | int | 等候室是否开启(0: 关闭,1:开启) | 
| watchword | int | 是否有开启入会口令的功能,0:否,1:是 | 
confTypes 参数说明
| 参数名 | 类型 | 说明 | 
|---|---|---|
| meetingType | int | 基础会议形式, 1:网络会议,2:直播会议 | 
返回示例
{
    "status": 0,
    "result": {
        "id": 200205,
        "title": "20240327-1",
        "type": 14,
        "data": {
            "confRoles": [
                {
                    "roleId": 1000,
                    "roleName": "主持人",
                    "managerType": 1
                },
                {
                    "roleId": 1001,
                    "roleName": "联席主持人",
                    "managerType": 2
                },
                {
                    "roleId": 1003,
                    "roleName": "参会人",
                    "managerType": 3
                }
            ],
            "confRules": {
                "conferenceset": {
                    "parJoinConfLogined": 1,
                    "joinConfSelTag": 1,
                    "waitingRoomSwitch": 1,
                    "watchword": 1
                }
            },
            "confTypes": {
                "meetingType": 2
            }
        },
        "info": {
            "status": 1,
            "scope": [
                "4_60000",
                "2_60000_154553",
                "2_60000_154327"
            ]
        },
        "createdAt": 1711673959729,
        "modifyAt": 1711965419821
    },
    "msg": "Successful get template detail info",
    "request_id": "confopenapiserver-192.168.50.21-1711966404.931956300.106",
    "reqid": "confopenapiserver-192.168.50.21-1711966404.931956300.106",
    "timestamp": 1711966404931,
    "request_duration": "348.0354ms"
}
备注
- 更多返回错误代码请看首页的错误代码描述


