获取业务模版列表

获取业务模版详情

1. 接口描述

接口名称:

/confopenapi/conference/template/list

发送方式:

POST

参数格式:

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

2. 输入参数

Http Header

参数名 必选 类型 说明
token string 接口调用凭证

HttpBody

3. 返回参数

参数名 类型 说明
status int 0:成功,非0失败, 查询的业务模版不存在, status = 20713
msg string 消息
result Object 数据内容
request_id string 请求ID

result 参数说明

参数名 类型 说明
customer Array 企业业务模版

customer数组单个对象说明

参数名 类型 说明
id int 模版ID
title string 模版名称
info Object 模版信息
data Object 模版信息
modifyAt int 模版修改时间
createdAt int 模版创建时间

info 参数说明

参数名 类型 说明
status int 发布状态 0:未发布,1,已发布

data 参数说明

参数名 类型 说明
confRoles Object 模版角色列表

confRoles 参数说明

参数名 类型 说明
roleId int 角色ID
roleName int 角色名称
managerType int 角色管理身份类型 1 - 管理者(主持人); 2 - 辅助管理者(联席主持人); 3 - 普通参会人

返回示例

{
    "status": 0,
    "result": {
        "customer": [
            {
                "id": 198154,
                "title": "多联席主持人模板-1",
                "type": 14,
                "data": {
                    "confRoles": [
                        {
                            "roleId": 1000,
                            "roleName": "主持人",
                            "managerType": 1
                        },
                        {
                            "roleId": 1001,
                            "roleName": "联席主持人5",
                            "managerType": 2
                        },
                        {
                            "roleId": 1004,
                            "roleName": "隐身联席",
                            "managerType": 2
                        },
                        {
                            "roleId": 1005,
                            "roleName": "联席主持人2",
                            "managerType": 2
                        },
                        {
                            "roleId": 1006,
                            "roleName": "参会人",
                            "managerType": 3
                        },
                        {
                            "roleId": 1007,
                            "roleName": "嘉宾",
                            "managerType": 3
                        }
                    ]
                },
                "info": {
                    "status": 1
                },
                "createdAt": 1708324901715,
                "modifyAt": 1709876591457
            },
            {
                "id": 198754,
                "title": "常规模板",
                "type": 14,
                "data": {
                    "confRoles": [
                        {
                            "roleId": 1000,
                            "roleName": "主持人",
                            "managerType": 1
                        },
                        {
                            "roleId": 1001,
                            "roleName": "联席主持人",
                            "managerType": 2
                        },
                        {
                            "roleId": 1003,
                            "roleName": "参会人",
                            "managerType": 3
                        }
                    ]
                },
                "info": {
                    "status": 1
                },
                "createdAt": 1709622258349,
                "modifyAt": 1709622308714
            },
            {
                "id": 164954,
                "title": "测试-新增设置项",
                "type": 14,
                "data": {
                    "confRoles": [
                        {
                            "roleId": 1000,
                            "roleName": "主持人",
                            "managerType": 1
                        },
                        {
                            "roleId": 1001,
                            "roleName": "联席主持人",
                            "managerType": 2
                        },
                        {
                            "roleId": 1004,
                            "roleName": "助理",
                            "managerType": 2
                        },
                        {
                            "roleId": 1005,
                            "roleName": "参会人1",
                            "managerType": 3
                        },
                        {
                            "roleId": 1006,
                            "roleName": "参会人2",
                            "managerType": 3
                        }
                    ]
                },
                "info": {
                    "status": 1
                },
                "createdAt": 1687938430791,
                "modifyAt": 1706593012572
            }  
        ]
    },
    "msg": "Successful get template detail info",
    "request_id": "confopenapiserver-192.168.50.21-1711605306.156794700.81",
    "reqid": "confopenapiserver-192.168.50.21-1711605306.156794700.81",
    "timestamp": 1711605306168,
    "request_duration": "501.6579ms"
}

备注

  • 更多返回错误代码请看首页的错误代码描述