科达视讯平台会管API

V10.0.0.0.0.20260513

API_Level:11

会议管理

会议接口

名称 创建会议
URI /api/v1/mc/confs
方法 POST
说明
最低支持版本 1

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
params str 会议下参
参数名称 数据类型 说明 是否必填 默认值
conf_type int 会议类型,枚举:
0-传统;
1-端口;
2-SFU纯转发会议;
4-auto;
自动会议类型规则:
一.终端支持包含RTC或不包含RTC:
- 用户域有端口权限并且机房能力支持端口混合能力,开端口混合会议,机房不支持端口混合能力则优先传统混合会议,没有端口权限则开传统/传统混合会议
二.终端只支持RTC:
1.用户域有SFU权限,没有端口权限,机房支持传统混合能力则开传统混合会议,不支持则开SFU纯转发会议
2.用户域有SFU权限,有端口权限,机房支持端口混合能力,则开端口混合会议,不支持则优先开传统混合会议,机房不支持端口混合和传统混合能力则开SFU纯转发会议
3.用户域没有SFU权限,则返回错误码
0
name str 会议名称 xxx的会议
{
  "conf_id": "0001234",
  "meeting_id": "2dd76a855d894d7fa4e1a759dad45350",
  "machine_room_moid": "mooooooo-oooo-oooo-oooo-defaultmachi",
  "success": 1
}

名称 结束会议
URI /api/v1/mc/confs/{conf_id}
方法 DELETE
说明
最低支持版本 1

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
conf_id str 会议e164号(7.0做过兼容,可传meetingMoid,通过长度判断)

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
_method 若浏览器不支持DELETE,则使用POST请求,并在请求参数中带上_method参数,并设置其值为DELETE,作为不支持DELETE请求的替代方案。
{
  "conf_id": "0001234",
  "meeting_id": "2dd76a855d894d7fa4e1a759dad45350",
  "machine_room_moid": "mooooooo-oooo-oooo-oooo-defaultmachi",
  "success": 1
}

名称 获取会议列表
URI /api/v1/mc/meetings
方法 GET
说明
最低支持版本 2

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
state str 议状态:1:预约,2:开始,3:结束,6:待审批,7:审批不通过, 不传返回所有
end_time str 结束时间,格式为ISO8601:2000标准,不填表示从开始时间以后的所有
start_time str 开始时间,格式为ISO8601:2000标准,不填表示从服务器当前时间开始
start int 默认为0,即从符合条件的数据中的第几行取数据,0为第一行数据 0
count int 默认为10,即在包含start在内的后count条数据,如果参数为0表示获取所有 0
order int 以会议的开始时间为准,默认为0,正序 0
{
  "total": 0,
  "success": 1,
  "meetings": [
    {
      "meeting_id": "66c19ddf9100483493e0162fdb81ac59",
      "conf_id": "0000001",
      "name": "xxx的会议",
      "state": 1,
      "start_time": "2026-03-31T15:42:40+08:00",
      "end_time": "2026-03-31T15:42:40+08:00",
      "e164": "0000001",
      "regular_meeting_moid": "",
      "conf_type": 0,
      "video": 0,
      "creator": {
        "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
        "account_type": 1,
        "name": "我是xxx",
        "mobile": "13852521511",
        "telephone": "85181157"
      },
      "regular_simple_dto": {
        "regular_meeting_moid": "",
        "residue_meeting_size": 0,
        "residue_meeting": [
          {
            "meeting_id": "66c19ddf9100483493e0162fdb81ac59",
            "conf_id": "0000001",
            "name": "xxx的会议",
            "state": 1,
            "start_time": "2026-03-31T15:42:40+08:00",
            "end_time": "2026-03-31T15:42:40+08:00",
            "e164": "0000001"
          }
        ]
      }
    }
  ]
}

名称 获取会议信息
URI /api/v1/mc/meetings/{meeting_id}
方法 GET
说明
最低支持版本 2

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
meeting_id str 会议moid [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
{
  "success": 0,
  "meeting_id": "66c19ddf9100483493e0162fdb81ac59",
  "conf_id": "0000001",
  "name": "xxx的会议",
  "state": 1,
  "start_time": "2026-03-31T15:42:40+08:00",
  "end_time": "2026-03-31T15:42:40+08:00",
  "e164": "0000001",
  "encrypted_key": "",
  "brief": "我是纪要",
  "password": "",
  "regular_meeting_moid": "",
  "user_domain_moid": "",
  "fec_mode": 0,
  "encrypted_type": 0,
  "sms": 0,
  "call_times": 0,
  "call_interval": 0,
  "vacinterval": 0,
  "safe_conf": 0,
  "conf_type": 0,
  "bitrate": 30,
  "closed_conf": 0,
  "duration": 240,
  "watermark": 0,
  "conf_protocol": 0,
  "auto_end": 0,
  "cascade_return_para": 0,
  "cascade_mode": 0,
  "force_mute": 0,
  "enable_audience": 0,
  "doubleflow": 0,
  "public_conf": 0,
  "one_reforming": 0,
  "cascade_return": 0,
  "cascade_auto_end": 0,
  "cascade_upload": 0,
  "multi_stream": 0,
  "mute_filter": 0,
  "mute": 0,
  "silence": 0,
  "voice_activity_detection": 0,
  "enable_dual_list": 0,
  "video_meeting": 0,
  "enable_rtc": 0,
  "anonymous_mt": 0,
  "video_quality": 0,
  "dual_mode": 0,
  "dual_lock": 0,
  "email": 0,
  "wechat": 0,
  "preoccupy_resource": 0,
  "encrypted_auth": 0,
  "max_join_mt": 192,
  "speaker": {
    "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
    "account_type": 1,
    "name": "我是xxx",
    "conf_e164": "000001"
  },
  "creator": {
    "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
    "account_type": 1,
    "name": "我是xxx",
    "mobile": "13852521511",
    "telephone": "85181157"
  },
  "chairman": {
    "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
    "account_type": 1,
    "name": "我是xxx"
  },
  "rooms": [
    {
      "name": "",
      "region_name": "",
      "id": 1
    }
  ],
  "members": [
    {
      "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
      "account_type": 1,
      "name": "我是xxx"
    }
  ],
  "video_formats": [
    {
      "bitrate": 2048,
      "resolution": 13,
      "format": 3,
      "frame": 30
    }
  ]
}

名称 预约视频会议
URI /api/v1/mc/booked_confs
方法 POST
说明
最低支持版本 3

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
params str(object) 请求内容,以JSON形式发送,需进行UrlEncode,全量更新,需传所有参数
参数名称 数据类型 说明 是否必填 默认值
name str 会议名称,
1.字符限制:
a.不支持输入特殊字符:% & * ^ ~ ' " " ? / \ < > | ` " $
b.且首字符和尾字符不支持输入,下划线(_) 减号(-) 小数点(.) @ (除首尾字符可以输入)
2.最大字符长度:64个字节
传统会议
start_time str 会议开始时间,格式为ISO8601:2000标准 2026-03-31T15:42:40+08:00
conf_type int 会议类型,枚举:
0-传统;
1-端口;
2-SFU纯转发会议;
4-auto;
自动会议类型规则:
一.终端支持包含RTC或不包含RTC:
- 用户域有端口权限并且机房能力支持端口混合能力,开端口混合会议,机房不支持端口混合能力则优先传统混合会议,没有端口权限则开传统/传统混合会议
二.终端只支持RTC:
1.用户域有SFU权限,没有端口权限,机房支持传统混合能力则开传统混合会议,不支持则开SFU纯转发会议
2.用户域有SFU权限,有端口权限,机房支持端口混合能力,则开端口混合会议,不支持则优先开传统混合会议,机房不支持端口混合和传统混合能力则开SFU纯转发会议
3.用户域没有SFU权限,则返回错误码
0
voice_activity_detection int 是否开启语言激励
0-不开启;
1-开启;
0
max_join_mt int 最大与会终端数,默认为192
192-大型192方会议;
192
{
  "conf_id": "0001234",
  "meeting_id": "2dd76a855d894d7fa4e1a759dad45350",
  "machine_room_moid": "mooooooo-oooo-oooo-oooo-defaultmachi",
  "success": 1
}

名称 更新预约会议
URI /api/v1/mc/booked_confs/{conf_id}
方法 POST
说明
最低支持版本 3

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
conf_id str 会议e164 [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
params str(object) 请求内容,以JSON形式发送,需进行UrlEncode,全量更新,需传所有参数
参数名称 数据类型 说明 是否必填 默认值
name str 会议名称,
1.字符限制:
a.不支持输入特殊字符:% & * ^ ~ ' " " ? / \ < > | ` " $
b.且首字符和尾字符不支持输入,下划线(_) 减号(-) 小数点(.) @ (除首尾字符可以输入)
2.最大字符长度:64个字节
传统会议
start_time str 会议开始时间,格式为ISO8601:2000标准 2026-03-31T15:42:40+08:00
conf_type int 会议类型,枚举:
0-传统;
1-端口;
2-SFU纯转发会议;
4-auto;
自动会议类型规则:
一.终端支持包含RTC或不包含RTC:
- 用户域有端口权限并且机房能力支持端口混合能力,开端口混合会议,机房不支持端口混合能力则优先传统混合会议,没有端口权限则开传统/传统混合会议
二.终端只支持RTC:
1.用户域有SFU权限,没有端口权限,机房支持传统混合能力则开传统混合会议,不支持则开SFU纯转发会议
2.用户域有SFU权限,有端口权限,机房支持端口混合能力,则开端口混合会议,不支持则优先开传统混合会议,机房不支持端口混合和传统混合能力则开SFU纯转发会议
3.用户域没有SFU权限,则返回错误码
0
voice_activity_detection int 是否开启语言激励
0-不开启;
1-开启;
0
max_join_mt int 最大与会终端数,默认为192
192-大型192方会议;
192
{
  "conf_id": "0001234",
  "meeting_id": "2dd76a855d894d7fa4e1a759dad45350",
  "machine_room_moid": "mooooooo-oooo-oooo-oooo-defaultmachi",
  "success": 1
}

名称 取消预约会议
URI /api/v1/mc/booked_confs/{conf_id}
方法 DELETE
说明
最低支持版本 3

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
conf_id str 会议e164 [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
_method 若浏览器不支持DELETE,则使用POST请求,并在请求参数中带上_method参数,并设置其值为DELETE,作为不支持DELETE请求的替代方案。
params str(object) 请求内容,以JSON形式发送,需进行UrlEncode,全量更新,需传所有参数
参数名称 数据类型 说明 是否必填 默认值
reason str 取消原因
{
  "conf_id": "0001234",
  "meeting_id": "2dd76a855d894d7fa4e1a759dad45350",
  "machine_room_moid": "mooooooo-oooo-oooo-oooo-defaultmachi",
  "success": 1
}

名称 获取预约会议列表
URI /api/v1/mc/booked_confs
方法 GET
说明
最低支持版本 1

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
end_time str 结束时间,格式为ISO8601:2000标准,不填表示从开始时间以后的所有
start_time str 开始时间,格式为ISO8601:2000标准,不填表示从服务器当前时间开始
start int 默认为0,即从符合条件的数据中的第几行取数据,0为第一行数据 0
count int 默认为10,即在包含start在内的后count条数据,如果参数为0表示获取所有 0
order int 以会议的开始时间为准,默认为0,正序 0
{
  "total": 0,
  "success": 1,
  "booked_confs": [
    {
      "meeting_id": "eb72ef76-919b-4b60-b0b6-84b03acc7847",
      "conf_id": "0000001",
      "name": "",
      "conf_type": 0,
      "start_time": "2026-03-31T15:42:40+08:00",
      "end_time": "2026-03-31T15:42:40+08:00",
      "duration": 240,
      "encrypted_key": "",
      "conf_level": "",
      "password": "",
      "regular_meeting_moid": "",
      "encrypted_type": 0,
      "one_reforming": 0,
      "safe_conf": 0,
      "bitrate": 0,
      "security_level": 0,
      "closed_conf": 0,
      "conf_protocol": 0,
      "conf_category": 0,
      "force_mute": 0,
      "enable_audience": 0,
      "mute": 0,
      "silence": 0,
      "voice_activity_detection": 0,
      "public_conf": 0,
      "enable_dual_list": 0,
      "enable_rtc": 0,
      "anonymous_mt": 0,
      "video_quality": 0,
      "dual_mode": 0,
      "invited_mt_num": 50,
      "encrypted_auth": 0,
      "max_join_mt": 192,
      "creator": {
        "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
        "account_type": 1,
        "name": "我是xxx",
        "mobile": "13852521511",
        "telephone": "85181157"
      },
      "regular_simple_dto": {
        "regular_meeting_moid": "",
        "residue_meeting_size": 0,
        "residue_meeting": [
          {
            "meeting_id": "66c19ddf9100483493e0162fdb81ac59",
            "conf_id": "0000001",
            "name": "xxx的会议",
            "state": 1,
            "start_time": "2026-03-31T15:42:40+08:00",
            "end_time": "2026-03-31T15:42:40+08:00",
            "e164": "0000001"
          }
        ]
      },
      "invite_members": [
        {
          "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
          "account_type": 1,
          "name": "我是xxx",
          "protocol": 255,
          "bitrate": 2048
        }
      ],
      "doubleflow_members": [
        {
          "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
          "account_type": 1,
          "name": "我是xxx"
        }
      ]
    }
  ]
}

名称 获取预约会议信息
URI /api/v1/mc/booked_confs/{conf_id}
方法 GET
说明
最低支持版本 1

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
conf_id str 会议e164 [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
{
  "success": 0,
  "meeting_id": "eb72ef76-919b-4b60-b0b6-84b03acc7847",
  "conf_id": "0000001",
  "name": "",
  "conf_type": 0,
  "start_time": "2026-03-31T15:42:40+08:00",
  "end_time": "2026-03-31T15:42:40+08:00",
  "duration": 240,
  "encrypted_key": "",
  "conf_level": "",
  "password": "",
  "regular_meeting_moid": "",
  "fec_mode": 0,
  "encrypted_type": 0,
  "sms": 0,
  "one_reforming": 0,
  "call_times": 0,
  "call_interval": 0,
  "call_mode": 2,
  "safe_conf": 0,
  "bitrate": 0,
  "security_level": 0,
  "closed_conf": 0,
  "watermark": 0,
  "conf_protocol": 0,
  "auto_end": 0,
  "conf_category": 0,
  "cascade_return_para": 0,
  "cascade_mode": 0,
  "force_mute": 0,
  "enable_audience": 0,
  "doubleflow": 0,
  "cascade_return": 0,
  "cascade_upload": 0,
  "multi_stream": 0,
  "mute_filter": 0,
  "mute": 0,
  "silence": 0,
  "voice_activity_detection": 0,
  "public_conf": 0,
  "enable_dual_list": 0,
  "enable_rtc": 0,
  "anonymous_mt": 0,
  "vmp_enable": 0,
  "mix_enable": 0,
  "poll_enable": 0,
  "video_quality": 0,
  "dual_mode": 0,
  "email": 0,
  "invited_mt_num": 50,
  "wechat": 0,
  "vacinterval": 0,
  "preoccupy_resource": 0,
  "encrypted_auth": 0,
  "max_join_mt": 192,
  "speaker": {
    "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
    "account_type": 1,
    "name": "我是xxx",
    "conf_e164": "000001"
  },
  "vmp": {
    "background_image": "",
    "name": "",
    "preferred_style": 1,
    "background_image_enable": 0,
    "layout": 5,
    "mode": 2,
    "except_self": 0,
    "voice_hint": 1,
    "show_mt_name": 1,
    "broadcast": 1,
    "mt_name_style": {
      "font_color": "#FFFFFF",
      "position": 1,
      "font_size": 1
    },
    "poll": {
      "name": "",
      "num": 10,
      "keep_time": 5,
      "mode": 1,
      "members": [
        {
          "name": "我是xxx",
          "conf_e164": "000001",
          "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
          "account_type": 1
        }
      ]
    },
    "members": [
      {
        "name": "我是xxx",
        "conf_e164": "000001",
        "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
        "member_type": 6,
        "chn_idx": 0,
        "account_type": 1,
        "mt_chn_idx": 2,
        "poll": {
          "name": "",
          "num": 10,
          "keep_time": 5,
          "mode": 1,
          "members": [
            {
              "name": "我是xxx",
              "conf_e164": "000001",
              "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
              "account_type": 1
            }
          ]
        }
      }
    ]
  },
  "creator": {
    "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
    "account_type": 1,
    "name": "我是xxx",
    "mobile": "13852521511",
    "telephone": "85181157"
  },
  "mix": {
    "name": "",
    "mode": 1,
    "members": [
      {
        "name": "我是xxx",
        "conf_e164": "000001",
        "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
        "account_type": 1
      }
    ],
    "active_members": [
      {
        "name": "我是xxx",
        "conf_e164": "000001",
        "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
        "account_type": 1
      }
    ]
  },
  "poll": {
    "name": "",
    "num": 10,
    "keep_time": 5,
    "mode": 1,
    "members": [
      {
        "name": "我是xxx",
        "conf_e164": "000001",
        "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
        "account_type": 1
      }
    ]
  },
  "dcs": {
    "mode": 2
  },
  "regular_simple_dto": {
    "regular_meeting_moid": "",
    "residue_meeting_size": 0,
    "residue_meeting": [
      {
        "meeting_id": "66c19ddf9100483493e0162fdb81ac59",
        "conf_id": "0000001",
        "name": "xxx的会议",
        "state": 1,
        "start_time": "2026-03-31T15:42:40+08:00",
        "end_time": "2026-03-31T15:42:40+08:00",
        "e164": "0000001"
      }
    ]
  },
  "recorder": {
    "vrs_id": "e2b3f132-1307-11ed-8c83-000c293c33e2",
    "live_password": "",
    "publish_mode": 0,
    "recorder_mode": 2,
    "anonymous": 0,
    "dual_stream": 0,
    "live_dual_stream": 0
  },
  "chairman": {
    "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
    "account_type": 1,
    "name": "我是xxx"
  },
  "invite_members": [
    {
      "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
      "account_type": 1,
      "name": "我是xxx",
      "protocol": 255,
      "bitrate": 2048
    }
  ],
  "doubleflow_members": [
    {
      "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
      "account_type": 1,
      "name": "我是xxx"
    }
  ],
  "video_formats": [
    {
      "bitrate": 2048,
      "resolution": 13,
      "format": 3,
      "frame": 30
    }
  ],
  "keep_calling_members": [
    {
      "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
      "account_type": 1,
      "name": "我是xxx",
      "conf_e164": "000001"
    }
  ]
}

名称 获取会议的观众席人员
URI /api/v1/mc/meetings/{meeting_id}/audiences
方法 GET
说明
最低支持版本 4

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
meeting_id str 会议moid [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
start int 默认为0,即从符合条件的数据中的第几行取数据,0为第一行数据 0
count int 默认为10,即在包含start在内的后count条数据,如果参数为0表示获取所有 0
order int 以会议的开始时间为准,默认为0,正序 0
{
  "total": 0,
  "success": 1,
  "audiences": [
    {
      "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
      "account_type": 1,
      "name": "我是xxx",
      "participate_no": "",
      "is_participated": 0,
      "participated_type": 0,
      "protocol": 0
    }
  ]
}

名称 获取会议的与会人员
URI /api/v1/mc/meetings/{meeting_id}/members
方法 GET
说明
最低支持版本 4

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
meeting_id str 会议moid [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
start int 默认为0,即从符合条件的数据中的第几行取数据,0为第一行数据 0
count int 默认为10,即在包含start在内的后count条数据,如果参数为0表示获取所有 0
order int 以会议的开始时间为准,默认为0,正序 0
{
  "total": 0,
  "success": 1,
  "memebers": [
    {
      "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
      "account_type": 1,
      "name": "我是xxx",
      "participate_no": "",
      "is_participated": 0,
      "participated_type": 0,
      "protocol": 0
    }
  ]
}

名称 获取会议分享链接
URI /api/v1/mc/meetings/{meeting_id}/link
方法 GET
说明
最低支持版本 4

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
meeting_id str 会议moid,兼容虚拟会议室分享,可支持传e164号 [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
{
  "conf_link": "",
  "live_url": "https://sfu.kedacom.com/meetingCore/videolive.html?meetingMoid=3bea262e5c8e46f19032ead096b5f314",
  "success": 0
}

名称 会议名称校验
URI /api/v1/mc/valid_conf_name
方法 GET
说明
最低支持版本 3

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
meeting_id str 会议moid,更新会议时必填
conf_name str 会议名称
end_time str 结束时间,格式为ISO8601:2000标准,不填表示从开始时间以后的所有
start_time str 开始时间,格式为ISO8601:2000标准,不填表示从服务器当前时间开始
{
  "success": 0,
  "data": {}
}

名称 获取会议混音预案信息列表
URI /api/v1/mc/meetings/{meeting_id}/premixs
方法 GET
说明
最低支持版本 4

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
meeting_id str 在会控中表示会议id; 在编辑/预约会议页面中表示缓存的key [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
start int 默认为0,即从符合条件的数据中的第几行取数据,0为第一行数据 0
count int 默认为10,即在包含start在内的后count条数据,如果参数为0表示获取所有 0
order int 以会议的开始时间为准,默认为0,正序 0
{
  "total": 0,
  "success": 1,
  "data": [
    {
      "id": "",
      "name": ""
    }
  ]
}

名称 获取会议混音预案信息
URI /api/v1/mc/meetings/{meeting_id}/premixs/{mix_id}
方法 GET
说明
最低支持版本 4

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
meeting_id str 在会控中表示会议id; 在编辑/预约会议页面中表示缓存的key
mix_id str 预案id [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
{
  "id": "",
  "name": "",
  "mode": 1,
  "success": 0,
  "members": [
    {
      "name": "我是xxx",
      "conf_e164": "000001",
      "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
      "account_type": 1
    }
  ],
  "active_members": [
    {
      "name": "我是xxx",
      "conf_e164": "000001",
      "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
      "account_type": 1
    }
  ]
}

名称 保存混音预案
URI /api/v1/mc/meetings/{meeting_moid}/premixs
方法 POST
说明
最低支持版本 7

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
meeting_moid str 在会控中表示会议id; 在编辑/预约会议页面中表示缓存的key

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
params str(object) 请求内容,以JSON形式发送,需进行UrlEncode,全量更新,需传所有参数
参数名称 数据类型 说明 是否必填 默认值
mode int 混音模式
1-智能混音;
2-定制混音;
1
{
  "success": 1,
  "id": ""
}

名称 修改混音预案
URI /api/v1/mc/meetings/{meeting_moid}/premixs/{mix_id}
方法 POST
说明
最低支持版本 7

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
meeting_moid str 在会控中表示会议id; 在编辑/预约会议页面中表示缓存的key
mix_id str mix_id [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
params str(object) 请求内容,以JSON形式发送,需进行UrlEncode,全量更新,需传所有参数
参数名称 数据类型 说明 是否必填 默认值
mode int 混音模式
1-智能混音;
2-定制混音;
1
{
  "success": 1,
  "id": ""
}

名称 删除混音预案
URI /api/v1/mc/meetings/{meeting_moid}/premixs/{mix_id}
方法 DELETE
说明
最低支持版本 7

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
meeting_moid str 在会控中表示会议id; 在编辑/预约会议页面中表示缓存的key
mix_id str 画面合成id

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
_method 若浏览器不支持DELETE,则使用POST请求,并在请求参数中带上_method参数,并设置其值为DELETE,作为不支持DELETE请求的替代方案。
{
  "success": 0,
  "data": {}
}

名称 获取会议轮询预案信息列表
URI /api/v1/mc/meetings/{meeting_id}/prepolls
方法 GET
说明
最低支持版本 4

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
meeting_id str 在会控中表示会议id; 在编辑/预约会议页面中表示缓存的key [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
start int 默认为0,即从符合条件的数据中的第几行取数据,0为第一行数据 0
count int 默认为10,即在包含start在内的后count条数据,如果参数为0表示获取所有 0
order int 以会议的开始时间为准,默认为0,正序 0
{
  "total": 0,
  "success": 1,
  "data": [
    {
      "id": "",
      "name": ""
    }
  ]
}

名称 获取会议轮询预案信息
URI /api/v1/mc/meetings/{meeting_id}/prepolls/{poll_id}
方法 GET
说明
最低支持版本 4

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
meeting_id str 在会控中表示会议id; 在编辑/预约会议页面中表示缓存的key [Path参数]
poll_id str 预案id [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
{
  "id": "",
  "name": "",
  "num": 10,
  "keep_time": 5,
  "mode": 1,
  "success": 0,
  "members": [
    {
      "name": "我是xxx",
      "conf_e164": "000001",
      "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
      "account_type": 1
    }
  ]
}

名称 保存轮询预案
URI /api/v1/mc/meetings/{meeting_moid}/prepolls
方法 POST
说明
最低支持版本 7

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
meeting_moid str 在会控中表示会议id; 在编辑/预约会议页面中表示缓存的key

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
params str(object) 请求内容,以JSON形式发送,需进行UrlEncode,全量更新,需传所有参数
参数名称 数据类型 说明 是否必填 默认值
num int 轮询次数,0表示无限次轮询 10
keep_time int 轮询间隔时间(秒) 5
mode int 轮询模式
1-视频轮询;
3-音视频轮询;
1
members array 轮询成员
    conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
    account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
    account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
{
  "success": 1,
  "id": ""
}

名称 修改轮询预案
URI /api/v1/mc/meetings/{meeting_moid}/prepolls/{poll_id}
方法 POST
说明
最低支持版本 7

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
meeting_moid str 在会控中表示会议id; 在编辑/预约会议页面中表示缓存的key
poll_id str poll_id [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
params str(object) 请求内容,以JSON形式发送,需进行UrlEncode,全量更新,需传所有参数
参数名称 数据类型 说明 是否必填 默认值
num int 轮询次数,0表示无限次轮询 10
keep_time int 轮询间隔时间(秒) 5
mode int 轮询模式
1-视频轮询;
3-音视频轮询;
1
members array 轮询成员
    conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
    account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
    account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
{
  "success": 1,
  "id": ""
}

名称 删除轮询预案
URI /api/v1/mc/meetings/{meeting_moid}/prepolls/{poll_id}
方法 DELETE
说明
最低支持版本 7

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
meeting_moid str 在会控中表示会议id; 在编辑/预约会议页面中表示缓存的key
poll_id str 轮询id

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
_method 若浏览器不支持DELETE,则使用POST请求,并在请求参数中带上_method参数,并设置其值为DELETE,作为不支持DELETE请求的替代方案。
{
  "success": 0,
  "data": {}
}

名称 获取会议电视墙预案信息列表
URI /api/v1/mc/meetings/{meeting_id}/pretvwalls
方法 GET
说明
最低支持版本 4

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
meeting_id str 在会控中表示会议id; 在编辑/预约会议页面中表示缓存的key [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
start int 默认为0,即从符合条件的数据中的第几行取数据,0为第一行数据 0
count int 默认为10,即在包含start在内的后count条数据,如果参数为0表示获取所有 0
order int 以会议的开始时间为准,默认为0,正序 0
{
  "total": 0,
  "success": 1,
  "data": [
    {
      "id": "",
      "name": ""
    }
  ]
}

名称 获取会议电视墙预案信息
URI /api/v1/mc/meetings/{meeting_id}/pretvwalls/{tvwall_id}
方法 GET
说明
最低支持版本 4

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
meeting_id str 在会控中表示会议id; 在编辑/预约会议页面中表示缓存的key [Path参数]
tvwall_id str 预案id [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
{
  "id": "",
  "name": "",
  "success": 0,
  "tvwalls": [
    {
      "style_id": "",
      "mode": 1,
      "show_mt_name": 1,
      "batch_poll": {
        "name": "",
        "num": 10,
        "keep_time": 5,
        "mode": 1,
        "members": [
          {
            "name": "我是xxx",
            "conf_e164": "000001",
            "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
            "account_type": 1
          }
        ]
      },
      "members": [
        {
          "name": "我是xxx",
          "hdu_id": "2_1",
          "conf_e164": "000001",
          "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
          "member_type": 5,
          "account_type": 1,
          "mt_chn_idx": 2,
          "poll": {
            "name": "",
            "num": 10,
            "keep_time": 5,
            "mode": 1,
            "members": [
              {
                "name": "我是xxx",
                "conf_e164": "000001",
                "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
                "account_type": 1
              }
            ]
          },
          "vmp": {
            "background_image": "",
            "name": "",
            "preferred_style": 1,
            "background_image_enable": 0,
            "layout": 5,
            "mode": 2,
            "except_self": 0,
            "voice_hint": 1,
            "show_mt_name": 1,
            "broadcast": 1,
            "mt_name_style": {
              "font_color": "#FFFFFF",
              "position": 1,
              "font_size": 1
            },
            "poll": {
              "name": "",
              "num": 10,
              "keep_time": 5,
              "mode": 1,
              "members": [
                {
                  "name": "我是xxx",
                  "conf_e164": "000001",
                  "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
                  "account_type": 1
                }
              ]
            },
            "members": [
              {
                "name": "我是xxx",
                "conf_e164": "000001",
                "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
                "member_type": 6,
                "chn_idx": 0,
                "account_type": 1,
                "mt_chn_idx": 2,
                "poll": {
                  "name": "",
                  "num": 10,
                  "keep_time": 5,
                  "mode": 1,
                  "members": [
                    {
                      "name": "我是xxx",
                      "conf_e164": "000001",
                      "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
                      "account_type": 1
                    }
                  ]
                }
              }
            ]
          },
          "spilt": [
            {
              "name": "我是xxx",
              "conf_e164": "000001",
              "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
              "sub_chn_index": 2,
              "account_type": 1,
              "mt_chn_idx": 2
            }
          ]
        }
      ]
    }
  ]
}

名称 保存电视墙预案
URI /api/v1/mc/meetings/{meeting_moid}/pretvwalls
方法 POST
说明
最低支持版本 7

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
meeting_moid str 在会控中表示会议id; 在编辑/预约会议页面中表示缓存的key

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
params str(object) 请求内容,以JSON形式发送,需进行UrlEncode,全量更新,需传所有参数
参数名称 数据类型 说明 是否必填 默认值
name str 预案名称
tvwalls array 电视墙列表
    style_id str 电视墙风格moid
    mode int 电视墙模式
1-定制画面;
2-批量轮询;
1
    show_mt_name int 是否显示终端名称 1
    batch_poll object 批量轮询
        name str 预案名称
        num int 轮询次数,0表示无限次轮询 10
        keep_time int 轮询间隔时间(秒) 5
        mode int 轮询模式
1-视频轮询;
3-音视频轮询;
1
        members array 轮询成员
            name str 名称,最大字符长度:128个字节 我是xxx
            conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
            account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
            account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
    members array 电视墙成员
        name str 名称,最大字符长度:128个字节 我是xxx
        hdu_id str 设备id号_通道索引号 2_1
        conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
        account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
        member_type int 跟随类型
1-会控指定;
2-发言人跟随;
3-管理方跟随;
4-会议轮询跟随;
5-单通道轮询;
6-选看画面合成;
7-批量轮询(仅返回数据时使用);
8-自主多画面;
9-四分屏;
10-内容共享跟随;
5
        account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
        mt_chn_idx int 终端通道 id 2
        poll object 单通道轮询
            name str 预案名称
            num int 轮询次数,0表示无限次轮询 10
            keep_time int 轮询间隔时间(秒) 5
            mode int 轮询模式
1-视频轮询;
3-音视频轮询;
1
            members array 轮询成员
                name str 名称,最大字符长度:128个字节 我是xxx
                conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
                account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
                account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
        vmp object 自主多画面
            background_image str 合成宣讲背景图片id
            name str 预案名称
            preferred_style int 合成风格偏好
0-经典;
1-一大多小;
2-等大;
1
            background_image_enable int 合成宣讲背景图片是否开启
0-关闭;
1-开启;
0
            layout int 画面合成风格
1-一画面全屏;
2-两画面: 2等大,居中(1行2列);
3-两画面: 1大1小,1大全屏,1小右下;
4-三画面: 等大,1上2下;
5-四画面: 等大,2行2列;
6-六画面: 1大5小,1大左上,2小右上(2行1列),3小下(1行3列);
7-八画面: 1大7小,1大左上,3小右上(3行1列),4小下(1行4列);
8-九画面: 等大,3行3列;
9-十画面: 2大8小,2大左(2行1列),8小右(4行2列);
10-十三画面: 1大12小,大1左上,4小右上(2行2列),8小下(2行4列);
11-十六画面: 16等分,4x4;
12-四画面: 1大3小,1大左,3小右(3行1列);
13-七画面: 3大4小,2大上(1行2列),1大左下,4小右下(2行2列);
14-二十画面: 2大18小,2大上(1行2列),18小下(3行6列);
15-十画面: 2大8小,2大上(1行2列),8小下(2行4列);
17-十四画面: 2大12小,2大左上(1行2列),2小右上(2行1列),10小下(2行5列);
18-十画面: 2大8小,4小上(1行4列),2大中(1行2列),4小下(1行4列);
19-十三画面: 1大12小,4小上(1行4列),2小左中(2行1列),1大中中,2小右中(2行1列), 4小下(1行4列);
20-十五画面: 3大12小,3大上(1行3列),12小下(2行6列);
21-六画面: 6等大,居中(2行3列);
22-三画面: 1大2小,1大左,2小右(2行1列);
23-三画面: 等大,1左,2右(2行1列);
26-四画面: 1大3小,1大上,3小下(1行3列);
27-二十五画面: 等大,5行5列;
30-七画面: 1大6小,1大上,6小下(1行6列);
34-五画面: 1大4小,1大左,4小右(4行1列);
35-五画面: 1大4小,1大上,4小下(1行4列);
38-十一画面: 1大10小,1大上,10小下(2行5列);
39-十二画面: 3大9小,2大上(1行2列),1大左下,9小右下(3行3列);
46-十七画面: 1大16小,1大左上,6小右上(3行2列),10小下(2行5列);
48-十八画面: 6大12小,6小上(1行6列),6大居中(2行3列),6小下(1行6列);
49-十八画面: 6大12小,6大上(2行3列),12小下(2行6列);
51-十九画面: 2大17小,2大左上(1行2列),2小右上(2行1列),15小下(3行5列);
54-二十一画面: 1大20小,6小上(1行6列),4小左中(4行1列),1大中中,4小右中(4行1列),6小下(1行6列);
56-二十二画面: 1大21小,1大左上,6小右上(2行3列),15小下(3行5列);
59-二十四画面: 4大20小,6小上(1行6列),4小左中(4行1列),4大中中(2行2列),4小右中(4行1列),6小下(1行6列);
61-两画面: 1大1小,1大全屏,1小右上;
62-两画面: 1大1小,1大全屏,1小左下;
63-两画面: 1大1小,1大全屏,1小左上;
64-六画面: 1大5小,1大左,5小右(5行1列),3小下(1行3列);
65-十一画面: 3大8小,3大上(1行3列),8小下(2行4列);
66-十二画面: 2大10小,2大上(1行2列),10小下(2行5列);
67-十五画面: 1大14小,1大左上,8小右上(4行2列),6小下(1行6列);
68-两画面: 2等大,居中(2行1列);
69-两画面: 1大1小,1大左中,1小右中;
70-三画面: 3等大,居中(1行3列);
71-三画面: 3等大,2左(2行1列),1右中;
72-四画面: 1大3小,1大全屏,3小下中(1行3列);
73-五画面: 1大4小,4小左(4行1列),1大右;
74-六画面: 1大5小,3小左(3行1列),1大右上,2小右下(1行2列);
75-七画面: 3大4小,2大上,4小左下(2行2列),1大右下;
76-八画面: 8等大,居中(2行4列);
77-八画面: 1大7小,4小左(4行1列),1大右上,3小右下(1行3列);
78-九画面: 1大8小,1大上,8小下(1行8列);
79-九画面: 1大8小,1大左上,3小右上(3行1列),5小下(1行5列);
80-十二画面: 12等大,居中(3行4列);
81-十三画面: 1大12小,4小左(4行1列),1大中上,4小中下(2行2列),4小右(4行1列);
82-十四画面: 2大12小,4小左(4行1列),2大右上(1行2列),8小右下(2行4列);
83-十五画面: 1大14小,5小左(5行1列),1大中上,4小中下(1行4列),5小右(5行1列);
84-十七画面: 1大16小,10小左(5行2列),1大右上,6小右下(2行3列);
85-十九画面: 2大17小,5小左(5行1列),2大右上(1行2列),12小右下(3行4列);
86-二十画面: 20等大,居中(4行5列);
87-二十一画面: 1大20小,6小左(6行1列),1大中上,8小中下(2行4列),6小右(6行1列);
88-二十四画面: 24等大,居中(4行6列);
89-二十四画面: 4大20小,6小左(6行1列),4大中上(2行2列),8小中下(2行4列),6小右(6行1列);
5
            mode int 画面合成模式
1-定制画面合成;
2-自动画面合成;
3-自动画面合成批量轮询(预留);
4-定制画面合成批量轮询;
2
            except_self int 是否开启自动画面合成n-1模式,默认为0,即不显示自己的画面,仅自动画面合成时有效 0
            voice_hint int 是否识别声音来源
0-否;
1-是;
1
            show_mt_name int 是否显示别名
0-否;
1-是;
1
            broadcast int 是否向终端广播
0-否;
1-是;
1
            mt_name_style object 画面合成参数
                font_color str 台标字体三原色#RGB格式,十六进制表示,默认为#FFFFFF #FFFFFF
                position int 台标显示位置,默认为1
0-左上角;
1-左下角;
2-右上角;
3-右下角;
4-底部中间;
1
                font_size int 台标字体大小
0-小;
1-中;
2-大;
1
            poll object 批量轮询
                name str 预案名称
                num int 轮询次数,0表示无限次轮询 10
                keep_time int 轮询间隔时间(秒) 5
                mode int 轮询模式
1-视频轮询;
3-音视频轮询;
1
                members array 轮询成员
                    name str 名称,最大字符长度:128个字节 我是xxx
                    conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
                    account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
                    account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
            members array 画面合成成员
                name str 名称,最大字符长度:128个字节 我是xxx
                conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
                account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
                member_type int 跟随类型
1-会控指定;
2-发言人跟随;
3-管理方跟随;
4-会议轮询跟随;
6-单通道轮询;
7-内容共享跟随;
6
                chn_idx int 在画面合成中的位置 0
                account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
                mt_chn_idx int 终端通道 id 2
                poll object 单通道轮询设置
                    name str 预案名称
                    num int 轮询次数,0表示无限次轮询 10
                    keep_time int 轮询间隔时间(秒) 5
                    mode int 轮询模式
1-视频轮询;
3-音视频轮询;
1
                    members array 轮询成员
                        name str 名称,最大字符长度:128个字节 我是xxx
                        conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
                        account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
                        account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
        spilt array 四分屏成员
            name str 名称,最大字符长度:128个字节 我是xxx
            conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
            account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
            sub_chn_index int 四分屏索引 2
            account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
            mt_chn_idx int 终端通道 id 2
{
  "success": 1,
  "id": ""
}

名称 修改电视墙预案
URI /api/v1/mc/meetings/{meeting_moid}/pretvwalls/{tvwall_id}
方法 POST
说明
最低支持版本 7

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
meeting_moid str 在会控中表示会议id; 在编辑/预约会议页面中表示缓存的key
tvwall_id str tvwall_id [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
params str(object) 请求内容,以JSON形式发送,需进行UrlEncode,全量更新,需传所有参数
参数名称 数据类型 说明 是否必填 默认值
name str 预案名称
tvwalls array 电视墙列表
    style_id str 电视墙风格moid
    mode int 电视墙模式
1-定制画面;
2-批量轮询;
1
    show_mt_name int 是否显示终端名称 1
    batch_poll object 批量轮询
        name str 预案名称
        num int 轮询次数,0表示无限次轮询 10
        keep_time int 轮询间隔时间(秒) 5
        mode int 轮询模式
1-视频轮询;
3-音视频轮询;
1
        members array 轮询成员
            name str 名称,最大字符长度:128个字节 我是xxx
            conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
            account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
            account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
    members array 电视墙成员
        name str 名称,最大字符长度:128个字节 我是xxx
        hdu_id str 设备id号_通道索引号 2_1
        conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
        account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
        member_type int 跟随类型
1-会控指定;
2-发言人跟随;
3-管理方跟随;
4-会议轮询跟随;
5-单通道轮询;
6-选看画面合成;
7-批量轮询(仅返回数据时使用);
8-自主多画面;
9-四分屏;
10-内容共享跟随;
5
        account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
        mt_chn_idx int 终端通道 id 2
        poll object 单通道轮询
            name str 预案名称
            num int 轮询次数,0表示无限次轮询 10
            keep_time int 轮询间隔时间(秒) 5
            mode int 轮询模式
1-视频轮询;
3-音视频轮询;
1
            members array 轮询成员
                name str 名称,最大字符长度:128个字节 我是xxx
                conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
                account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
                account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
        vmp object 自主多画面
            background_image str 合成宣讲背景图片id
            name str 预案名称
            preferred_style int 合成风格偏好
0-经典;
1-一大多小;
2-等大;
1
            background_image_enable int 合成宣讲背景图片是否开启
0-关闭;
1-开启;
0
            layout int 画面合成风格
1-一画面全屏;
2-两画面: 2等大,居中(1行2列);
3-两画面: 1大1小,1大全屏,1小右下;
4-三画面: 等大,1上2下;
5-四画面: 等大,2行2列;
6-六画面: 1大5小,1大左上,2小右上(2行1列),3小下(1行3列);
7-八画面: 1大7小,1大左上,3小右上(3行1列),4小下(1行4列);
8-九画面: 等大,3行3列;
9-十画面: 2大8小,2大左(2行1列),8小右(4行2列);
10-十三画面: 1大12小,大1左上,4小右上(2行2列),8小下(2行4列);
11-十六画面: 16等分,4x4;
12-四画面: 1大3小,1大左,3小右(3行1列);
13-七画面: 3大4小,2大上(1行2列),1大左下,4小右下(2行2列);
14-二十画面: 2大18小,2大上(1行2列),18小下(3行6列);
15-十画面: 2大8小,2大上(1行2列),8小下(2行4列);
17-十四画面: 2大12小,2大左上(1行2列),2小右上(2行1列),10小下(2行5列);
18-十画面: 2大8小,4小上(1行4列),2大中(1行2列),4小下(1行4列);
19-十三画面: 1大12小,4小上(1行4列),2小左中(2行1列),1大中中,2小右中(2行1列), 4小下(1行4列);
20-十五画面: 3大12小,3大上(1行3列),12小下(2行6列);
21-六画面: 6等大,居中(2行3列);
22-三画面: 1大2小,1大左,2小右(2行1列);
23-三画面: 等大,1左,2右(2行1列);
26-四画面: 1大3小,1大上,3小下(1行3列);
27-二十五画面: 等大,5行5列;
30-七画面: 1大6小,1大上,6小下(1行6列);
34-五画面: 1大4小,1大左,4小右(4行1列);
35-五画面: 1大4小,1大上,4小下(1行4列);
38-十一画面: 1大10小,1大上,10小下(2行5列);
39-十二画面: 3大9小,2大上(1行2列),1大左下,9小右下(3行3列);
46-十七画面: 1大16小,1大左上,6小右上(3行2列),10小下(2行5列);
48-十八画面: 6大12小,6小上(1行6列),6大居中(2行3列),6小下(1行6列);
49-十八画面: 6大12小,6大上(2行3列),12小下(2行6列);
51-十九画面: 2大17小,2大左上(1行2列),2小右上(2行1列),15小下(3行5列);
54-二十一画面: 1大20小,6小上(1行6列),4小左中(4行1列),1大中中,4小右中(4行1列),6小下(1行6列);
56-二十二画面: 1大21小,1大左上,6小右上(2行3列),15小下(3行5列);
59-二十四画面: 4大20小,6小上(1行6列),4小左中(4行1列),4大中中(2行2列),4小右中(4行1列),6小下(1行6列);
61-两画面: 1大1小,1大全屏,1小右上;
62-两画面: 1大1小,1大全屏,1小左下;
63-两画面: 1大1小,1大全屏,1小左上;
64-六画面: 1大5小,1大左,5小右(5行1列),3小下(1行3列);
65-十一画面: 3大8小,3大上(1行3列),8小下(2行4列);
66-十二画面: 2大10小,2大上(1行2列),10小下(2行5列);
67-十五画面: 1大14小,1大左上,8小右上(4行2列),6小下(1行6列);
68-两画面: 2等大,居中(2行1列);
69-两画面: 1大1小,1大左中,1小右中;
70-三画面: 3等大,居中(1行3列);
71-三画面: 3等大,2左(2行1列),1右中;
72-四画面: 1大3小,1大全屏,3小下中(1行3列);
73-五画面: 1大4小,4小左(4行1列),1大右;
74-六画面: 1大5小,3小左(3行1列),1大右上,2小右下(1行2列);
75-七画面: 3大4小,2大上,4小左下(2行2列),1大右下;
76-八画面: 8等大,居中(2行4列);
77-八画面: 1大7小,4小左(4行1列),1大右上,3小右下(1行3列);
78-九画面: 1大8小,1大上,8小下(1行8列);
79-九画面: 1大8小,1大左上,3小右上(3行1列),5小下(1行5列);
80-十二画面: 12等大,居中(3行4列);
81-十三画面: 1大12小,4小左(4行1列),1大中上,4小中下(2行2列),4小右(4行1列);
82-十四画面: 2大12小,4小左(4行1列),2大右上(1行2列),8小右下(2行4列);
83-十五画面: 1大14小,5小左(5行1列),1大中上,4小中下(1行4列),5小右(5行1列);
84-十七画面: 1大16小,10小左(5行2列),1大右上,6小右下(2行3列);
85-十九画面: 2大17小,5小左(5行1列),2大右上(1行2列),12小右下(3行4列);
86-二十画面: 20等大,居中(4行5列);
87-二十一画面: 1大20小,6小左(6行1列),1大中上,8小中下(2行4列),6小右(6行1列);
88-二十四画面: 24等大,居中(4行6列);
89-二十四画面: 4大20小,6小左(6行1列),4大中上(2行2列),8小中下(2行4列),6小右(6行1列);
5
            mode int 画面合成模式
1-定制画面合成;
2-自动画面合成;
3-自动画面合成批量轮询(预留);
4-定制画面合成批量轮询;
2
            except_self int 是否开启自动画面合成n-1模式,默认为0,即不显示自己的画面,仅自动画面合成时有效 0
            voice_hint int 是否识别声音来源
0-否;
1-是;
1
            show_mt_name int 是否显示别名
0-否;
1-是;
1
            broadcast int 是否向终端广播
0-否;
1-是;
1
            mt_name_style object 画面合成参数
                font_color str 台标字体三原色#RGB格式,十六进制表示,默认为#FFFFFF #FFFFFF
                position int 台标显示位置,默认为1
0-左上角;
1-左下角;
2-右上角;
3-右下角;
4-底部中间;
1
                font_size int 台标字体大小
0-小;
1-中;
2-大;
1
            poll object 批量轮询
                name str 预案名称
                num int 轮询次数,0表示无限次轮询 10
                keep_time int 轮询间隔时间(秒) 5
                mode int 轮询模式
1-视频轮询;
3-音视频轮询;
1
                members array 轮询成员
                    name str 名称,最大字符长度:128个字节 我是xxx
                    conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
                    account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
                    account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
            members array 画面合成成员
                name str 名称,最大字符长度:128个字节 我是xxx
                conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
                account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
                member_type int 跟随类型
1-会控指定;
2-发言人跟随;
3-管理方跟随;
4-会议轮询跟随;
6-单通道轮询;
7-内容共享跟随;
6
                chn_idx int 在画面合成中的位置 0
                account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
                mt_chn_idx int 终端通道 id 2
                poll object 单通道轮询设置
                    name str 预案名称
                    num int 轮询次数,0表示无限次轮询 10
                    keep_time int 轮询间隔时间(秒) 5
                    mode int 轮询模式
1-视频轮询;
3-音视频轮询;
1
                    members array 轮询成员
                        name str 名称,最大字符长度:128个字节 我是xxx
                        conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
                        account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
                        account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
        spilt array 四分屏成员
            name str 名称,最大字符长度:128个字节 我是xxx
            conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
            account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
            sub_chn_index int 四分屏索引 2
            account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
            mt_chn_idx int 终端通道 id 2
{
  "success": 1,
  "id": ""
}

名称 删除电视墙预案
URI /api/v1/mc/meetings/{meeting_moid}/pretvwalls/{tvwall_id}
方法 DELETE
说明
最低支持版本 7

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
meeting_moid str 在会控中表示会议id; 在编辑/预约会议页面中表示缓存的key
tvwall_id str 电视墙id

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
_method 若浏览器不支持DELETE,则使用POST请求,并在请求参数中带上_method参数,并设置其值为DELETE,作为不支持DELETE请求的替代方案。
{
  "success": 0,
  "data": {}
}

名称 获取会议VMP预案信息列表
URI /api/v1/mc/meetings/{meeting_id}/prevmps
方法 GET
说明
最低支持版本 4

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
meeting_id str 在会控中表示会议id; 在编辑/预约会议页面中表示缓存的key [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
start int 默认为0,即从符合条件的数据中的第几行取数据,0为第一行数据 0
count int 默认为10,即在包含start在内的后count条数据,如果参数为0表示获取所有 0
order int 以会议的开始时间为准,默认为0,正序 0
{
  "total": 0,
  "success": 1,
  "data": [
    {
      "id": "",
      "name": ""
    }
  ]
}

名称 获取会议VMP预案信息
URI /api/v1/mc/meetings/{meeting_id}/prevmps/{vmp_id}
方法 GET
说明
最低支持版本 4

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
meeting_id str 在会控中表示会议id; 在编辑/预约会议页面中表示缓存的key [Path参数]
vmp_id str 预案id [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
{
  "background_image": "",
  "id": "",
  "name": "",
  "preferred_style": 1,
  "background_image_enable": 0,
  "layout": 5,
  "mode": 2,
  "success": 0,
  "except_self": 0,
  "voice_hint": 1,
  "show_mt_name": 1,
  "broadcast": 1,
  "mt_name_style": {
    "font_color": "#FFFFFF",
    "position": 1,
    "font_size": 1
  },
  "poll": {
    "name": "",
    "num": 10,
    "keep_time": 5,
    "mode": 1,
    "members": [
      {
        "name": "我是xxx",
        "conf_e164": "000001",
        "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
        "account_type": 1
      }
    ]
  },
  "members": [
    {
      "name": "我是xxx",
      "conf_e164": "000001",
      "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
      "member_type": 6,
      "chn_idx": 0,
      "account_type": 1,
      "mt_chn_idx": 2,
      "poll": {
        "name": "",
        "num": 10,
        "keep_time": 5,
        "mode": 1,
        "members": [
          {
            "name": "我是xxx",
            "conf_e164": "000001",
            "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
            "account_type": 1
          }
        ]
      }
    }
  ]
}

名称 保存画面合成预案
URI /api/v1/mc/meetings/{meeting_moid}/prevmps
方法 POST
说明
最低支持版本 7

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
meeting_moid str 在会控中表示会议id; 在编辑/预约会议页面中表示缓存的key

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
params str(object) 请求内容,以JSON形式发送,需进行UrlEncode,全量更新,需传所有参数
参数名称 数据类型 说明 是否必填 默认值
layout int 画面合成风格
1-一画面全屏;
2-两画面: 2等大,居中(1行2列);
3-两画面: 1大1小,1大全屏,1小右下;
4-三画面: 等大,1上2下;
5-四画面: 等大,2行2列;
6-六画面: 1大5小,1大左上,2小右上(2行1列),3小下(1行3列);
7-八画面: 1大7小,1大左上,3小右上(3行1列),4小下(1行4列);
8-九画面: 等大,3行3列;
9-十画面: 2大8小,2大左(2行1列),8小右(4行2列);
10-十三画面: 1大12小,大1左上,4小右上(2行2列),8小下(2行4列);
11-十六画面: 16等分,4x4;
12-四画面: 1大3小,1大左,3小右(3行1列);
13-七画面: 3大4小,2大上(1行2列),1大左下,4小右下(2行2列);
14-二十画面: 2大18小,2大上(1行2列),18小下(3行6列);
15-十画面: 2大8小,2大上(1行2列),8小下(2行4列);
17-十四画面: 2大12小,2大左上(1行2列),2小右上(2行1列),10小下(2行5列);
18-十画面: 2大8小,4小上(1行4列),2大中(1行2列),4小下(1行4列);
19-十三画面: 1大12小,4小上(1行4列),2小左中(2行1列),1大中中,2小右中(2行1列), 4小下(1行4列);
20-十五画面: 3大12小,3大上(1行3列),12小下(2行6列);
21-六画面: 6等大,居中(2行3列);
22-三画面: 1大2小,1大左,2小右(2行1列);
23-三画面: 等大,1左,2右(2行1列);
26-四画面: 1大3小,1大上,3小下(1行3列);
27-二十五画面: 等大,5行5列;
30-七画面: 1大6小,1大上,6小下(1行6列);
34-五画面: 1大4小,1大左,4小右(4行1列);
35-五画面: 1大4小,1大上,4小下(1行4列);
38-十一画面: 1大10小,1大上,10小下(2行5列);
39-十二画面: 3大9小,2大上(1行2列),1大左下,9小右下(3行3列);
46-十七画面: 1大16小,1大左上,6小右上(3行2列),10小下(2行5列);
48-十八画面: 6大12小,6小上(1行6列),6大居中(2行3列),6小下(1行6列);
49-十八画面: 6大12小,6大上(2行3列),12小下(2行6列);
51-十九画面: 2大17小,2大左上(1行2列),2小右上(2行1列),15小下(3行5列);
54-二十一画面: 1大20小,6小上(1行6列),4小左中(4行1列),1大中中,4小右中(4行1列),6小下(1行6列);
56-二十二画面: 1大21小,1大左上,6小右上(2行3列),15小下(3行5列);
59-二十四画面: 4大20小,6小上(1行6列),4小左中(4行1列),4大中中(2行2列),4小右中(4行1列),6小下(1行6列);
61-两画面: 1大1小,1大全屏,1小右上;
62-两画面: 1大1小,1大全屏,1小左下;
63-两画面: 1大1小,1大全屏,1小左上;
64-六画面: 1大5小,1大左,5小右(5行1列),3小下(1行3列);
65-十一画面: 3大8小,3大上(1行3列),8小下(2行4列);
66-十二画面: 2大10小,2大上(1行2列),10小下(2行5列);
67-十五画面: 1大14小,1大左上,8小右上(4行2列),6小下(1行6列);
68-两画面: 2等大,居中(2行1列);
69-两画面: 1大1小,1大左中,1小右中;
70-三画面: 3等大,居中(1行3列);
71-三画面: 3等大,2左(2行1列),1右中;
72-四画面: 1大3小,1大全屏,3小下中(1行3列);
73-五画面: 1大4小,4小左(4行1列),1大右;
74-六画面: 1大5小,3小左(3行1列),1大右上,2小右下(1行2列);
75-七画面: 3大4小,2大上,4小左下(2行2列),1大右下;
76-八画面: 8等大,居中(2行4列);
77-八画面: 1大7小,4小左(4行1列),1大右上,3小右下(1行3列);
78-九画面: 1大8小,1大上,8小下(1行8列);
79-九画面: 1大8小,1大左上,3小右上(3行1列),5小下(1行5列);
80-十二画面: 12等大,居中(3行4列);
81-十三画面: 1大12小,4小左(4行1列),1大中上,4小中下(2行2列),4小右(4行1列);
82-十四画面: 2大12小,4小左(4行1列),2大右上(1行2列),8小右下(2行4列);
83-十五画面: 1大14小,5小左(5行1列),1大中上,4小中下(1行4列),5小右(5行1列);
84-十七画面: 1大16小,10小左(5行2列),1大右上,6小右下(2行3列);
85-十九画面: 2大17小,5小左(5行1列),2大右上(1行2列),12小右下(3行4列);
86-二十画面: 20等大,居中(4行5列);
87-二十一画面: 1大20小,6小左(6行1列),1大中上,8小中下(2行4列),6小右(6行1列);
88-二十四画面: 24等大,居中(4行6列);
89-二十四画面: 4大20小,6小左(6行1列),4大中上(2行2列),8小中下(2行4列),6小右(6行1列);
5
mode int 画面合成模式
1-定制画面合成;
2-自动画面合成;
3-自动画面合成批量轮询(预留);
4-定制画面合成批量轮询;
2
voice_hint int 是否识别声音来源
0-否;
1-是;
1
show_mt_name int 是否显示别名
0-否;
1-是;
1
broadcast int 是否向终端广播
0-否;
1-是;
1
members array 画面合成成员
    conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
    account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
    member_type int 跟随类型
1-会控指定;
2-发言人跟随;
3-管理方跟随;
4-会议轮询跟随;
6-单通道轮询;
7-内容共享跟随;
6
    chn_idx int 在画面合成中的位置 0
    account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
{
  "success": 1,
  "id": ""
}

名称 修改画面合成预案
URI /api/v1/mc/meetings/{meeting_moid}/prevmps/{vmp_id}
方法 POST
说明
最低支持版本 7

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
meeting_moid str 在会控中表示会议id; 在编辑/预约会议页面中表示缓存的key
vmp_id str vmp_id [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
params str(object) 请求内容,以JSON形式发送,需进行UrlEncode,全量更新,需传所有参数
参数名称 数据类型 说明 是否必填 默认值
layout int 画面合成风格
1-一画面全屏;
2-两画面: 2等大,居中(1行2列);
3-两画面: 1大1小,1大全屏,1小右下;
4-三画面: 等大,1上2下;
5-四画面: 等大,2行2列;
6-六画面: 1大5小,1大左上,2小右上(2行1列),3小下(1行3列);
7-八画面: 1大7小,1大左上,3小右上(3行1列),4小下(1行4列);
8-九画面: 等大,3行3列;
9-十画面: 2大8小,2大左(2行1列),8小右(4行2列);
10-十三画面: 1大12小,大1左上,4小右上(2行2列),8小下(2行4列);
11-十六画面: 16等分,4x4;
12-四画面: 1大3小,1大左,3小右(3行1列);
13-七画面: 3大4小,2大上(1行2列),1大左下,4小右下(2行2列);
14-二十画面: 2大18小,2大上(1行2列),18小下(3行6列);
15-十画面: 2大8小,2大上(1行2列),8小下(2行4列);
17-十四画面: 2大12小,2大左上(1行2列),2小右上(2行1列),10小下(2行5列);
18-十画面: 2大8小,4小上(1行4列),2大中(1行2列),4小下(1行4列);
19-十三画面: 1大12小,4小上(1行4列),2小左中(2行1列),1大中中,2小右中(2行1列), 4小下(1行4列);
20-十五画面: 3大12小,3大上(1行3列),12小下(2行6列);
21-六画面: 6等大,居中(2行3列);
22-三画面: 1大2小,1大左,2小右(2行1列);
23-三画面: 等大,1左,2右(2行1列);
26-四画面: 1大3小,1大上,3小下(1行3列);
27-二十五画面: 等大,5行5列;
30-七画面: 1大6小,1大上,6小下(1行6列);
34-五画面: 1大4小,1大左,4小右(4行1列);
35-五画面: 1大4小,1大上,4小下(1行4列);
38-十一画面: 1大10小,1大上,10小下(2行5列);
39-十二画面: 3大9小,2大上(1行2列),1大左下,9小右下(3行3列);
46-十七画面: 1大16小,1大左上,6小右上(3行2列),10小下(2行5列);
48-十八画面: 6大12小,6小上(1行6列),6大居中(2行3列),6小下(1行6列);
49-十八画面: 6大12小,6大上(2行3列),12小下(2行6列);
51-十九画面: 2大17小,2大左上(1行2列),2小右上(2行1列),15小下(3行5列);
54-二十一画面: 1大20小,6小上(1行6列),4小左中(4行1列),1大中中,4小右中(4行1列),6小下(1行6列);
56-二十二画面: 1大21小,1大左上,6小右上(2行3列),15小下(3行5列);
59-二十四画面: 4大20小,6小上(1行6列),4小左中(4行1列),4大中中(2行2列),4小右中(4行1列),6小下(1行6列);
61-两画面: 1大1小,1大全屏,1小右上;
62-两画面: 1大1小,1大全屏,1小左下;
63-两画面: 1大1小,1大全屏,1小左上;
64-六画面: 1大5小,1大左,5小右(5行1列),3小下(1行3列);
65-十一画面: 3大8小,3大上(1行3列),8小下(2行4列);
66-十二画面: 2大10小,2大上(1行2列),10小下(2行5列);
67-十五画面: 1大14小,1大左上,8小右上(4行2列),6小下(1行6列);
68-两画面: 2等大,居中(2行1列);
69-两画面: 1大1小,1大左中,1小右中;
70-三画面: 3等大,居中(1行3列);
71-三画面: 3等大,2左(2行1列),1右中;
72-四画面: 1大3小,1大全屏,3小下中(1行3列);
73-五画面: 1大4小,4小左(4行1列),1大右;
74-六画面: 1大5小,3小左(3行1列),1大右上,2小右下(1行2列);
75-七画面: 3大4小,2大上,4小左下(2行2列),1大右下;
76-八画面: 8等大,居中(2行4列);
77-八画面: 1大7小,4小左(4行1列),1大右上,3小右下(1行3列);
78-九画面: 1大8小,1大上,8小下(1行8列);
79-九画面: 1大8小,1大左上,3小右上(3行1列),5小下(1行5列);
80-十二画面: 12等大,居中(3行4列);
81-十三画面: 1大12小,4小左(4行1列),1大中上,4小中下(2行2列),4小右(4行1列);
82-十四画面: 2大12小,4小左(4行1列),2大右上(1行2列),8小右下(2行4列);
83-十五画面: 1大14小,5小左(5行1列),1大中上,4小中下(1行4列),5小右(5行1列);
84-十七画面: 1大16小,10小左(5行2列),1大右上,6小右下(2行3列);
85-十九画面: 2大17小,5小左(5行1列),2大右上(1行2列),12小右下(3行4列);
86-二十画面: 20等大,居中(4行5列);
87-二十一画面: 1大20小,6小左(6行1列),1大中上,8小中下(2行4列),6小右(6行1列);
88-二十四画面: 24等大,居中(4行6列);
89-二十四画面: 4大20小,6小左(6行1列),4大中上(2行2列),8小中下(2行4列),6小右(6行1列);
5
mode int 画面合成模式
1-定制画面合成;
2-自动画面合成;
3-自动画面合成批量轮询(预留);
4-定制画面合成批量轮询;
2
voice_hint int 是否识别声音来源
0-否;
1-是;
1
show_mt_name int 是否显示别名
0-否;
1-是;
1
broadcast int 是否向终端广播
0-否;
1-是;
1
members array 画面合成成员
    conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
    account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
    member_type int 跟随类型
1-会控指定;
2-发言人跟随;
3-管理方跟随;
4-会议轮询跟随;
6-单通道轮询;
7-内容共享跟随;
6
    chn_idx int 在画面合成中的位置 0
    account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
{
  "success": 1,
  "id": ""
}

名称 删除画面合成预案
URI /api/v1/mc/meetings/{meeting_moid}/prevmps/{vmp_id}
方法 DELETE
说明
最低支持版本 7

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
meeting_moid str 在会控中表示会议id; 在编辑/预约会议页面中表示缓存的key
vmp_id str 画面合成id

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
_method 若浏览器不支持DELETE,则使用POST请求,并在请求参数中带上_method参数,并设置其值为DELETE,作为不支持DELETE请求的替代方案。
{
  "success": 0,
  "data": {}
}

名称 获取点对点会议权限信息
URI /api/v1/mc/meetings/p2p_permission_info
方法 GET
说明 获取点对点会议权限信息
最低支持版本 6

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
callee str 被呼方,传终端e164
caller str 主呼方,传终端e164
{
  "success": 1,
  "call_permission": 0,
  "doubleflow_members": [
    {
      "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
      "account_type": 1,
      "name": "我是xxx"
    }
  ]
}

名称 获取预约直播会议列表
URI /api/v1/mc/lives
方法 GET
说明
最低支持版本 5

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
machine_room_moid str user_domain_moid、 vrs_moid 和machine_room_moid至少传一个,否则返回空列表
vrs_moid str vrsmoid
name str 模糊查询会议名称
user_domain_moid str 用户域moid
end_time str 结束时间,格式为ISO8601:2000标准,不填表示从开始时间以后的所有
start_time str 开始时间,格式为ISO8601:2000标准,不填表示从服务器当前时间开始
start int 默认为0,即从符合条件的数据中的第几行取数据,0为第一行数据 0
count int 默认为10,即在包含start在内的后count条数据,如果参数为0表示获取所有 0
order int 以会议的开始时间为准,默认为0,正序 0
{
  "total": 0,
  "success": 1,
  "data": [
    {
      "name": "",
      "company_moid": "",
      "encrypted_type": 0,
      "start_time": "2026-03-31T15:42:41+08:00"
    }
  ]
}

个人模板

名称 创建个人模板
URI /api/v1/mc/personal_templates
方法 POST
说明 创建个人模板
最低支持版本 1

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
params str(object) 请求内容,以JSON形式发送,需进行UrlEncode,全量更新,需传所有参数
参数名称 数据类型 说明 是否必填 默认值
name str 会议名称,
1.字符限制:
a.不支持输入特殊字符:% & * ^ ~ ' " " ? / \ < > | ` " $
b.且首字符和尾字符不支持输入,下划线(_) 减号(-) 小数点(.) @ (除首尾字符可以输入)
2.最大字符长度:64个字节
传统会议
conf_type int 会议类型
0-传统;
1-端口;
2-SFU纯转发会议;
0
voice_activity_detection int 是否开启语言激励
0-不开启;
1-开启;
0
max_join_mt int 最大与会终端数,默认为192
192-大型192方会议;
192
{
  "success": 0,
  "description": "",
  "template_id": ""
}

名称 修改个人模板
URI /api/v1/mc/personal_templates/{template_id}
方法 POST
说明 修改个人模板
最低支持版本 1

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
template_id str 个人模板ID [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
params str(object) 请求内容,以JSON形式发送,需进行UrlEncode,全量更新,需传所有参数
参数名称 数据类型 说明 是否必填 默认值
name str 会议名称,
1.字符限制:
a.不支持输入特殊字符:% & * ^ ~ ' " " ? / \ < > | ` " $
b.且首字符和尾字符不支持输入,下划线(_) 减号(-) 小数点(.) @ (除首尾字符可以输入)
2.最大字符长度:64个字节
传统会议
conf_type int 会议类型
0-传统;
1-端口;
2-SFU纯转发会议;
0
voice_activity_detection int 是否开启语言激励
0-不开启;
1-开启;
0
max_join_mt int 最大与会终端数,默认为192
192-大型192方会议;
192
{
  "success": 0,
  "description": "",
  "template_id": ""
}

名称 删除个人模板
URI /api/v1/mc/personal_templates/{template_id}
方法 DELETE
说明 删除个人模板
最低支持版本 1

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
template_id str 个人模板id [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
_method 若浏览器不支持DELETE,则使用POST请求,并在请求参数中带上_method参数,并设置其值为DELETE,作为不支持DELETE请求的替代方案。
{
  "success": 0,
  "description": "",
  "template_id": ""
}

名称 获取个人模板列表
URI /api/v1/mc/personal_templates
方法 GET
说明 return personal_templates
最低支持版本 1

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
start int 个人模板的开始行,默认为0,即从符合条件的数据中的第几行取数据,0为第一行数据
e164 str 会议号
count int 获取的个人模板数,默认为10,即在包含start在内的后count条数据,如果参数为0表示获取所有个人模板
order int 排序,默认升序
conf_category int 请求是否来自vcs,vcs时给1
{
  "total": 0,
  "success": 1,
  "personal_templates": [
    {
      "template_id": "56deed77cf06401b9c429676b316754a",
      "name": "传统超大方会议",
      "e164": "",
      "conf_type": 0,
      "encrypted_key": "#EDC4rfv",
      "conf_level": "0",
      "encrypted_type": 0,
      "resolution": 12,
      "one_reforming": 0,
      "safe_conf": 0,
      "bitrate": 2048,
      "closed_conf": 0,
      "conf_protocol": 0,
      "cascade_mode": 0,
      "enable_audience": 0,
      "mute": 0,
      "silence": 0,
      "voice_activity_detection": 0,
      "public_conf": 0,
      "enable_dual_list": 0,
      "enable_rtc": 0,
      "anonymous_mt": 0,
      "video_quality": 0,
      "dual_mode": 0,
      "encrypted_auth": 0,
      "max_join_mt": 192,
      "chairman": {
        "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
        "account_type": 1,
        "name": "我是xxx"
      },
      "video_formats": [
        {
          "bitrate": 2048,
          "resolution": 13,
          "format": 3,
          "frame": 30
        }
      ]
    }
  ]
}

名称 获取个人模板详情
URI /api/v1/mc/personal_templates/{template_id}
方法 GET
说明 获取个人模板详情
最低支持版本 1

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
template_id str 个人模板id [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
{
  "name": "传统会议",
  "success": 0,
  "e164": "",
  "encrypted_key": "!QAZ2wsx",
  "conf_level": "",
  "password": "0123456789",
  "doubleflow": 0,
  "encrypted_type": 0,
  "distribute_type": 0,
  "one_reforming": 0,
  "call_times": 0,
  "call_interval": 20,
  "call_mode": 2,
  "safe_conf": 0,
  "conf_type": 0,
  "closed_conf": 0,
  "duration": 240,
  "conf_protocol": 1,
  "auto_end": 1,
  "cascade_mode": 0,
  "cascade_return_para": 0,
  "enable_audience": 0,
  "cascade_return": 0,
  "cascade_auto_end": 0,
  "cascade_upload": 0,
  "fec_mode": 0,
  "multi_stream": 0,
  "mute_filter": 0,
  "mute": 0,
  "watermark": 0,
  "silence": 0,
  "voice_activity_detection": 0,
  "public_conf": 0,
  "enable_dual_list": 0,
  "enable_rtc": 0,
  "anonymous_mt": 0,
  "video_quality": 0,
  "dual_mode": 1,
  "dual_lock": 0,
  "vacinterval": 5,
  "preoccupy_resource": 0,
  "encrypted_auth": 0,
  "max_join_mt": 192,
  "ai": {
    "record": 0,
    "sign": 0,
    "subtitle": 0
  },
  "speaker": {
    "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
    "account_type": 1,
    "name": "我是xxx",
    "conf_e164": "000001"
  },
  "vmp": {
    "background_image": "",
    "name": "",
    "preferred_style": 1,
    "background_image_enable": 0,
    "layout": 5,
    "mode": 2,
    "except_self": 0,
    "voice_hint": 1,
    "show_mt_name": 1,
    "broadcast": 1,
    "mt_name_style": {
      "font_color": "#FFFFFF",
      "position": 1,
      "font_size": 1
    },
    "poll": {
      "name": "",
      "num": 10,
      "keep_time": 5,
      "mode": 1,
      "members": [
        {
          "name": "我是xxx",
          "conf_e164": "000001",
          "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
          "account_type": 1
        }
      ]
    },
    "members": [
      {
        "name": "我是xxx",
        "conf_e164": "000001",
        "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
        "member_type": 6,
        "chn_idx": 0,
        "account_type": 1,
        "mt_chn_idx": 2,
        "poll": {
          "name": "",
          "num": 10,
          "keep_time": 5,
          "mode": 1,
          "members": [
            {
              "name": "我是xxx",
              "conf_e164": "000001",
              "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
              "account_type": 1
            }
          ]
        }
      }
    ]
  },
  "mix": {
    "name": "",
    "mode": 1,
    "members": [
      {
        "name": "我是xxx",
        "conf_e164": "000001",
        "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
        "account_type": 1
      }
    ],
    "active_members": [
      {
        "name": "我是xxx",
        "conf_e164": "000001",
        "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
        "account_type": 1
      }
    ]
  },
  "poll": {
    "name": "",
    "num": 10,
    "keep_time": 5,
    "mode": 1,
    "members": [
      {
        "name": "我是xxx",
        "conf_e164": "000001",
        "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
        "account_type": 1
      }
    ]
  },
  "dcs": {
    "mode": 2
  },
  "recorder": {
    "vrs_id": "e2b3f132-1307-11ed-8c83-000c293c33e2",
    "live_password": "",
    "publish_mode": 0,
    "recorder_mode": 2,
    "anonymous": 0,
    "dual_stream": 0,
    "live_dual_stream": 0
  },
  "chairman": {
    "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
    "account_type": 1,
    "name": "我是xxx"
  },
  "vips": [
    {
      "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
      "account_type": 1,
      "name": "我是xxx",
      "conf_e164": "000001"
    }
  ],
  "invite_members": [
    {
      "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
      "account_type": 1,
      "name": "我是xxx",
      "protocol": 255,
      "bitrate": 2048
    }
  ],
  "audiences": [
    {
      "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
      "account_type": 1,
      "name": "我是xxx",
      "protocol": 255,
      "bitrate": 2048
    }
  ],
  "audio_formats": [
    0
  ],
  "video_formats": [
    {
      "bitrate": 2048,
      "resolution": 13,
      "format": 3,
      "frame": 30
    }
  ],
  "keep_calling_members": [
    {
      "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
      "account_type": 1,
      "name": "我是xxx",
      "conf_e164": "000001"
    }
  ]
}

名称 获取简单个人模板详情
URI /api/v1/mc/personal_templates/{template_id}/simple
方法 GET
说明 获取简单个人模板详情
最低支持版本 1

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
template_id str 个人模板id [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
{
  "success": 0,
  "template_id": "",
  "name": "",
  "conf_type": 0,
  "encrypted_key": "",
  "conf_level": "",
  "password": "",
  "e164": "",
  "vip_num": 0,
  "doubleflow": 0,
  "encrypted_type": 0,
  "one_reforming": 0,
  "call_times": 0,
  "call_interval": 20,
  "call_mode": 2,
  "vmp_num": 0,
  "safe_conf": 0,
  "bitrate": 2048,
  "closed_conf": 0,
  "duration": 240,
  "conf_protocol": 0,
  "mix_num": 0,
  "cascade_mode": 0,
  "cascade_return_para": 0,
  "poll_num": 0,
  "enable_audience": 0,
  "cascade_return": 0,
  "cascade_upload": 0,
  "fec_mode": 0,
  "mute": 0,
  "mute_filter": 0,
  "silence": 0,
  "voice_activity_detection": 0,
  "public_conf": 0,
  "enable_dual_list": 0,
  "enable_rtc": 0,
  "anonymous_mt": 0,
  "video_quality": 0,
  "dual_mode": 0,
  "invite_num": 0,
  "encrypted_auth": 0,
  "max_join_mt": 0,
  "speaker": {
    "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
    "account_type": 1,
    "name": "我是xxx",
    "conf_e164": "000001"
  },
  "chairman": {
    "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
    "account_type": 1,
    "name": "我是xxx"
  },
  "audio_formats": [
    0
  ],
  "video_formats": [
    {
      "bitrate": 2048,
      "resolution": 13,
      "format": 3,
      "frame": 30
    }
  ]
}

名称 获取个人模板参会人员
URI /api/v1/mc/personal_templates/{template_id}/invite_members
方法 GET
说明 获取个人模板参会人员
最低支持版本 1

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
template_id str 个人模板id [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
start int 个人模板参会人的开始行,默认为0,即从符合条件的数据中的第几行取数据,0为第一行数据
count int 获取的个人模板参会人数量,默认为10,即在包含start在内的后count条数据,如果参数为0表示获取所有参会人员
order int 默认升序
{
  "template_id": "",
  "total": 0,
  "success": 0,
  "invite_members": [
    {
      "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
      "account_type": 1,
      "name": "我是xxx",
      "protocol": 255,
      "bitrate": 2048
    }
  ]
}

名称 获取个人模板观众席人员
URI /api/v1/mc/personal_templates/{template_id}/audiences
方法 GET
说明 获取个人模板观众席人员
最低支持版本 1

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
template_id str 个人模板id [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
start int 个人模板观众的开始行,默认为0,即从符合条件的数据中的第几行取数据,0为第一行数据
count int 获取的个人模板观众数量,默认为10,即在包含start在内的后count条数据,如果参数为0表示获取所有观众
order int 默认升序
{
  "template_id": "",
  "total": 0,
  "success": 0,
  "audiences": [
    {
      "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
      "account_type": 1,
      "name": "我是xxx",
      "protocol": 255,
      "bitrate": 2048
    }
  ]
}

名称 获取个人模板VMP信息
URI /api/v1/mc/personal_templates/{template_id}/vmp
方法 GET
说明 获取个人模板VMP信息
最低支持版本 1

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
template_id str 个人模板id [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
start int 个人模板VMP人员开始行,默认为0,即从符合条件的数据中的第几行取数据,0为第一行数据
count int 获取的个人模板VMP人员数量,默认为10,即在包含start在内的后count条数据,如果参数为0表示获取所有VMP人员
order int 排序,默认升序
{
  "template_id": "",
  "total": 0,
  "success": 0,
  "vmp": {
    "background_image": "",
    "name": "",
    "preferred_style": 1,
    "background_image_enable": 0,
    "layout": 5,
    "mode": 2,
    "except_self": 0,
    "voice_hint": 1,
    "show_mt_name": 1,
    "broadcast": 1,
    "mt_name_style": {
      "font_color": "#FFFFFF",
      "position": 1,
      "font_size": 1
    },
    "poll": {
      "name": "",
      "num": 10,
      "keep_time": 5,
      "mode": 1,
      "members": [
        {
          "name": "我是xxx",
          "conf_e164": "000001",
          "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
          "account_type": 1
        }
      ]
    },
    "members": [
      {
        "name": "我是xxx",
        "conf_e164": "000001",
        "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
        "member_type": 6,
        "chn_idx": 0,
        "account_type": 1,
        "mt_chn_idx": 2,
        "poll": {
          "name": "",
          "num": 10,
          "keep_time": 5,
          "mode": 1,
          "members": [
            {
              "name": "我是xxx",
              "conf_e164": "000001",
              "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
              "account_type": 1
            }
          ]
        }
      }
    ]
  }
}

名称 获取个人模板轮询信息
URI /api/v1/mc/personal_templates/{template_id}/poll
方法 GET
说明 获取个人模板轮询信息
最低支持版本 1

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
template_id str 个人模板id [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
start int 个人模板轮询人员开始行,默认为0,即从符合条件的数据中的第几行取数据,0为第一行数据
count int 获取的个人模板轮询人员数量,默认为10,即在包含start在内的后count条数据,如果参数为0表示获取所有轮询人员
order int 排序,默认升序
{
  "template_id": "",
  "total": 0,
  "success": 0,
  "poll": {
    "name": "",
    "num": 10,
    "keep_time": 5,
    "mode": 1,
    "members": [
      {
        "name": "我是xxx",
        "conf_e164": "000001",
        "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
        "account_type": 1
      }
    ]
  }
}

名称 获取个人模板混音信息
URI /api/v1/mc/personal_templates/{template_id}/mix
方法 GET
说明 获取个人模板混音信息
最低支持版本 1

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
template_id str 个人模板id [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
start int 个人模板的混音人员开始行,默认为0,即从符合条件的数据中的第几行取数据,0为第一行数据
count int 获取的个人模板混音人员数量,默认为10,即在包含start在内的后count条数据,如果参数为0表示获取所有混音人员
order int 排序,默认升序
{
  "template_id": "",
  "total": 0,
  "success": 0,
  "mix": {
    "name": "",
    "mode": 1,
    "members": [
      {
        "name": "我是xxx",
        "conf_e164": "000001",
        "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
        "account_type": 1
      }
    ],
    "active_members": [
      {
        "name": "我是xxx",
        "conf_e164": "000001",
        "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
        "account_type": 1
      }
    ]
  }
}

名称 获取个人模板vip
URI /api/v1/mc/personal_templates/{template_id}/vip
方法 GET
说明 获取个人模板vip
最低支持版本 1

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
template_id str 个人模板id [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
start int 个人模板vip人员开始行,默认为0,即从符合条件的数据中的第几行取数据,0为第一行数据
count int 获取的个人模板vip人员数量,默认为10,即在包含start在内的后count条数据,如果参数为0表示获取所有vip人员
order int 排序,默认升序
{
  "template_id": "",
  "total": 0,
  "success": 0,
  "vips": [
    {
      "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
      "account_type": 1,
      "name": "我是xxx",
      "conf_e164": "000001"
    }
  ]
}

名称 新增模板VMP预案
URI /api/v1/mc/personal_templates/{template_id}/prevmps
方法 POST
说明 新增模板VMP预案
最低支持版本 1

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
template_id str 在会控中表示个人模板id; 在修改/新增模板页面中表示缓存的key [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
params str(object) 请求内容,以JSON形式发送,需进行UrlEncode,全量更新,需传所有参数
参数名称 数据类型 说明 是否必填 默认值
layout int 画面合成风格
1-一画面全屏;
2-两画面: 2等大,居中(1行2列);
3-两画面: 1大1小,1大全屏,1小右下;
4-三画面: 等大,1上2下;
5-四画面: 等大,2行2列;
6-六画面: 1大5小,1大左上,2小右上(2行1列),3小下(1行3列);
7-八画面: 1大7小,1大左上,3小右上(3行1列),4小下(1行4列);
8-九画面: 等大,3行3列;
9-十画面: 2大8小,2大左(2行1列),8小右(4行2列);
10-十三画面: 1大12小,大1左上,4小右上(2行2列),8小下(2行4列);
11-十六画面: 16等分,4x4;
12-四画面: 1大3小,1大左,3小右(3行1列);
13-七画面: 3大4小,2大上(1行2列),1大左下,4小右下(2行2列);
14-二十画面: 2大18小,2大上(1行2列),18小下(3行6列);
15-十画面: 2大8小,2大上(1行2列),8小下(2行4列);
17-十四画面: 2大12小,2大左上(1行2列),2小右上(2行1列),10小下(2行5列);
18-十画面: 2大8小,4小上(1行4列),2大中(1行2列),4小下(1行4列);
19-十三画面: 1大12小,4小上(1行4列),2小左中(2行1列),1大中中,2小右中(2行1列), 4小下(1行4列);
20-十五画面: 3大12小,3大上(1行3列),12小下(2行6列);
21-六画面: 6等大,居中(2行3列);
22-三画面: 1大2小,1大左,2小右(2行1列);
23-三画面: 等大,1左,2右(2行1列);
26-四画面: 1大3小,1大上,3小下(1行3列);
27-二十五画面: 等大,5行5列;
30-七画面: 1大6小,1大上,6小下(1行6列);
34-五画面: 1大4小,1大左,4小右(4行1列);
35-五画面: 1大4小,1大上,4小下(1行4列);
38-十一画面: 1大10小,1大上,10小下(2行5列);
39-十二画面: 3大9小,2大上(1行2列),1大左下,9小右下(3行3列);
46-十七画面: 1大16小,1大左上,6小右上(3行2列),10小下(2行5列);
48-十八画面: 6大12小,6小上(1行6列),6大居中(2行3列),6小下(1行6列);
49-十八画面: 6大12小,6大上(2行3列),12小下(2行6列);
51-十九画面: 2大17小,2大左上(1行2列),2小右上(2行1列),15小下(3行5列);
54-二十一画面: 1大20小,6小上(1行6列),4小左中(4行1列),1大中中,4小右中(4行1列),6小下(1行6列);
56-二十二画面: 1大21小,1大左上,6小右上(2行3列),15小下(3行5列);
59-二十四画面: 4大20小,6小上(1行6列),4小左中(4行1列),4大中中(2行2列),4小右中(4行1列),6小下(1行6列);
61-两画面: 1大1小,1大全屏,1小右上;
62-两画面: 1大1小,1大全屏,1小左下;
63-两画面: 1大1小,1大全屏,1小左上;
64-六画面: 1大5小,1大左,5小右(5行1列),3小下(1行3列);
65-十一画面: 3大8小,3大上(1行3列),8小下(2行4列);
66-十二画面: 2大10小,2大上(1行2列),10小下(2行5列);
67-十五画面: 1大14小,1大左上,8小右上(4行2列),6小下(1行6列);
68-两画面: 2等大,居中(2行1列);
69-两画面: 1大1小,1大左中,1小右中;
70-三画面: 3等大,居中(1行3列);
71-三画面: 3等大,2左(2行1列),1右中;
72-四画面: 1大3小,1大全屏,3小下中(1行3列);
73-五画面: 1大4小,4小左(4行1列),1大右;
74-六画面: 1大5小,3小左(3行1列),1大右上,2小右下(1行2列);
75-七画面: 3大4小,2大上,4小左下(2行2列),1大右下;
76-八画面: 8等大,居中(2行4列);
77-八画面: 1大7小,4小左(4行1列),1大右上,3小右下(1行3列);
78-九画面: 1大8小,1大上,8小下(1行8列);
79-九画面: 1大8小,1大左上,3小右上(3行1列),5小下(1行5列);
80-十二画面: 12等大,居中(3行4列);
81-十三画面: 1大12小,4小左(4行1列),1大中上,4小中下(2行2列),4小右(4行1列);
82-十四画面: 2大12小,4小左(4行1列),2大右上(1行2列),8小右下(2行4列);
83-十五画面: 1大14小,5小左(5行1列),1大中上,4小中下(1行4列),5小右(5行1列);
84-十七画面: 1大16小,10小左(5行2列),1大右上,6小右下(2行3列);
85-十九画面: 2大17小,5小左(5行1列),2大右上(1行2列),12小右下(3行4列);
86-二十画面: 20等大,居中(4行5列);
87-二十一画面: 1大20小,6小左(6行1列),1大中上,8小中下(2行4列),6小右(6行1列);
88-二十四画面: 24等大,居中(4行6列);
89-二十四画面: 4大20小,6小左(6行1列),4大中上(2行2列),8小中下(2行4列),6小右(6行1列);
5
mode int 画面合成模式
1-定制画面合成;
2-自动画面合成;
3-自动画面合成批量轮询(预留);
4-定制画面合成批量轮询;
2
voice_hint int 是否识别声音来源
0-否;
1-是;
1
show_mt_name int 是否显示别名
0-否;
1-是;
1
broadcast int 是否向终端广播
0-否;
1-是;
1
members array 画面合成成员
    conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
    account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
    member_type int 跟随类型
1-会控指定;
2-发言人跟随;
3-管理方跟随;
4-会议轮询跟随;
6-单通道轮询;
7-内容共享跟随;
6
    chn_idx int 在画面合成中的位置 0
    account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
{
  "success": 1,
  "id": ""
}

名称 修改模板VMP预案
URI /api/v1/mc/personal_templates/{template_id}/prevmps/{vmp_id}
方法 POST
说明 修改模板VMP预案
最低支持版本 1

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
template_id str 修改/新增模板页面中表示缓存的key [Path参数]
vmp_id str 画面合成ID [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
params str(object) 请求内容,以JSON形式发送,需进行UrlEncode,全量更新,需传所有参数
参数名称 数据类型 说明 是否必填 默认值
layout int 画面合成风格
1-一画面全屏;
2-两画面: 2等大,居中(1行2列);
3-两画面: 1大1小,1大全屏,1小右下;
4-三画面: 等大,1上2下;
5-四画面: 等大,2行2列;
6-六画面: 1大5小,1大左上,2小右上(2行1列),3小下(1行3列);
7-八画面: 1大7小,1大左上,3小右上(3行1列),4小下(1行4列);
8-九画面: 等大,3行3列;
9-十画面: 2大8小,2大左(2行1列),8小右(4行2列);
10-十三画面: 1大12小,大1左上,4小右上(2行2列),8小下(2行4列);
11-十六画面: 16等分,4x4;
12-四画面: 1大3小,1大左,3小右(3行1列);
13-七画面: 3大4小,2大上(1行2列),1大左下,4小右下(2行2列);
14-二十画面: 2大18小,2大上(1行2列),18小下(3行6列);
15-十画面: 2大8小,2大上(1行2列),8小下(2行4列);
17-十四画面: 2大12小,2大左上(1行2列),2小右上(2行1列),10小下(2行5列);
18-十画面: 2大8小,4小上(1行4列),2大中(1行2列),4小下(1行4列);
19-十三画面: 1大12小,4小上(1行4列),2小左中(2行1列),1大中中,2小右中(2行1列), 4小下(1行4列);
20-十五画面: 3大12小,3大上(1行3列),12小下(2行6列);
21-六画面: 6等大,居中(2行3列);
22-三画面: 1大2小,1大左,2小右(2行1列);
23-三画面: 等大,1左,2右(2行1列);
26-四画面: 1大3小,1大上,3小下(1行3列);
27-二十五画面: 等大,5行5列;
30-七画面: 1大6小,1大上,6小下(1行6列);
34-五画面: 1大4小,1大左,4小右(4行1列);
35-五画面: 1大4小,1大上,4小下(1行4列);
38-十一画面: 1大10小,1大上,10小下(2行5列);
39-十二画面: 3大9小,2大上(1行2列),1大左下,9小右下(3行3列);
46-十七画面: 1大16小,1大左上,6小右上(3行2列),10小下(2行5列);
48-十八画面: 6大12小,6小上(1行6列),6大居中(2行3列),6小下(1行6列);
49-十八画面: 6大12小,6大上(2行3列),12小下(2行6列);
51-十九画面: 2大17小,2大左上(1行2列),2小右上(2行1列),15小下(3行5列);
54-二十一画面: 1大20小,6小上(1行6列),4小左中(4行1列),1大中中,4小右中(4行1列),6小下(1行6列);
56-二十二画面: 1大21小,1大左上,6小右上(2行3列),15小下(3行5列);
59-二十四画面: 4大20小,6小上(1行6列),4小左中(4行1列),4大中中(2行2列),4小右中(4行1列),6小下(1行6列);
61-两画面: 1大1小,1大全屏,1小右上;
62-两画面: 1大1小,1大全屏,1小左下;
63-两画面: 1大1小,1大全屏,1小左上;
64-六画面: 1大5小,1大左,5小右(5行1列),3小下(1行3列);
65-十一画面: 3大8小,3大上(1行3列),8小下(2行4列);
66-十二画面: 2大10小,2大上(1行2列),10小下(2行5列);
67-十五画面: 1大14小,1大左上,8小右上(4行2列),6小下(1行6列);
68-两画面: 2等大,居中(2行1列);
69-两画面: 1大1小,1大左中,1小右中;
70-三画面: 3等大,居中(1行3列);
71-三画面: 3等大,2左(2行1列),1右中;
72-四画面: 1大3小,1大全屏,3小下中(1行3列);
73-五画面: 1大4小,4小左(4行1列),1大右;
74-六画面: 1大5小,3小左(3行1列),1大右上,2小右下(1行2列);
75-七画面: 3大4小,2大上,4小左下(2行2列),1大右下;
76-八画面: 8等大,居中(2行4列);
77-八画面: 1大7小,4小左(4行1列),1大右上,3小右下(1行3列);
78-九画面: 1大8小,1大上,8小下(1行8列);
79-九画面: 1大8小,1大左上,3小右上(3行1列),5小下(1行5列);
80-十二画面: 12等大,居中(3行4列);
81-十三画面: 1大12小,4小左(4行1列),1大中上,4小中下(2行2列),4小右(4行1列);
82-十四画面: 2大12小,4小左(4行1列),2大右上(1行2列),8小右下(2行4列);
83-十五画面: 1大14小,5小左(5行1列),1大中上,4小中下(1行4列),5小右(5行1列);
84-十七画面: 1大16小,10小左(5行2列),1大右上,6小右下(2行3列);
85-十九画面: 2大17小,5小左(5行1列),2大右上(1行2列),12小右下(3行4列);
86-二十画面: 20等大,居中(4行5列);
87-二十一画面: 1大20小,6小左(6行1列),1大中上,8小中下(2行4列),6小右(6行1列);
88-二十四画面: 24等大,居中(4行6列);
89-二十四画面: 4大20小,6小左(6行1列),4大中上(2行2列),8小中下(2行4列),6小右(6行1列);
5
mode int 画面合成模式
1-定制画面合成;
2-自动画面合成;
3-自动画面合成批量轮询(预留);
4-定制画面合成批量轮询;
2
voice_hint int 是否识别声音来源
0-否;
1-是;
1
show_mt_name int 是否显示别名
0-否;
1-是;
1
broadcast int 是否向终端广播
0-否;
1-是;
1
members array 画面合成成员
    conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
    account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
    member_type int 跟随类型
1-会控指定;
2-发言人跟随;
3-管理方跟随;
4-会议轮询跟随;
6-单通道轮询;
7-内容共享跟随;
6
    chn_idx int 在画面合成中的位置 0
    account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
{
  "success": 1,
  "id": ""
}

名称 删除模板VMP预案
URI /api/v1/mc/personal_templates/{template_id}/prevmps/{vmp_id}
方法 DELETE
说明 删除模板VMP预案
最低支持版本 1

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
template_id str 在会控中表示个人模板id; 在修改/新增模板页面中表示缓存的key [Path参数]
vmp_id str 画面合成ID [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
_method 若浏览器不支持DELETE,则使用POST请求,并在请求参数中带上_method参数,并设置其值为DELETE,作为不支持DELETE请求的替代方案。
{
  "success": 1,
  "id": ""
}

名称 获取模板VMP预案信息列表
URI /api/v1/mc/personal_templates/{template_id}/prevmps
方法 GET
说明 return data
最低支持版本 1

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
template_id str 在会控中表示个人模板id; 在修改/新增模板页面中表示缓存的key [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
count int 获取的模板VMP预案数量,默认为10,即在包含start在内的后count条数据,如果参数为0表示获取所有VMP预案
start int 模板VMP预案开始行,默认为0,即从符合条件的数据中的第几行取数据,0为第一行数据
order int 排序,默认升序
{
  "total": 0,
  "success": 1,
  "data": [
    {
      "id": "",
      "name": ""
    }
  ]
}

名称 获取模板VMP预案信息
URI /api/v1/mc/personal_templates/{template_id}/prevmps/{vmp_id}
方法 GET
说明 获取模板VMP预案信息
最低支持版本 1

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
template_id str 在会控中表示个人模板id; 在修改/新增模板页面中表示缓存的key [Path参数]
vmp_id str 画面合成ID [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
{
  "success": 1,
  "background_image": "",
  "id": "",
  "name": "",
  "preferred_style": 1,
  "background_image_enable": 0,
  "layout": 5,
  "mode": 2,
  "except_self": 0,
  "voice_hint": 1,
  "show_mt_name": 1,
  "broadcast": 1,
  "mt_name_style": {
    "font_color": "#FFFFFF",
    "position": 1,
    "font_size": 1
  },
  "poll": {
    "name": "",
    "num": 10,
    "keep_time": 5,
    "mode": 1,
    "members": [
      {
        "name": "我是xxx",
        "conf_e164": "000001",
        "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
        "account_type": 1
      }
    ]
  },
  "members": [
    {
      "name": "我是xxx",
      "conf_e164": "000001",
      "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
      "member_type": 6,
      "chn_idx": 0,
      "account_type": 1,
      "mt_chn_idx": 2,
      "poll": {
        "name": "",
        "num": 10,
        "keep_time": 5,
        "mode": 1,
        "members": [
          {
            "name": "我是xxx",
            "conf_e164": "000001",
            "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
            "account_type": 1
          }
        ]
      }
    }
  ]
}

名称 新增模板轮询预案
URI /api/v1/mc/personal_templates/{template_id}/prepolls
方法 POST
说明 新增模板轮询预案
最低支持版本 4

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
template_id str 在会控中表示个人模板id; 在修改/新增模板页面中表示缓存的key [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
params str(object) 请求内容,以JSON形式发送,需进行UrlEncode,全量更新,需传所有参数
参数名称 数据类型 说明 是否必填 默认值
num int 轮询次数,0表示无限次轮询 10
keep_time int 轮询间隔时间(秒) 5
mode int 轮询模式
1-视频轮询;
3-音视频轮询;
1
members array 轮询成员
    conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
    account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
    account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
{
  "success": 1,
  "id": ""
}

名称 修改模板轮询预案
URI /api/v1/mc/personal_templates/{template_id}/prepolls/{poll_id}
方法 POST
说明 修改模板轮询预案
最低支持版本 4

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
template_id str 修改/新增模板页面中表示缓存的key [Path参数]
poll_id str 轮询ID [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
params str(object) 请求内容,以JSON形式发送,需进行UrlEncode,全量更新,需传所有参数
参数名称 数据类型 说明 是否必填 默认值
num int 轮询次数,0表示无限次轮询 10
keep_time int 轮询间隔时间(秒) 5
mode int 轮询模式
1-视频轮询;
3-音视频轮询;
1
members array 轮询成员
    conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
    account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
    account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
{
  "success": 1,
  "id": ""
}

名称 删除模板轮询预案
URI /api/v1/mc/personal_templates/{template_id}/prepolls/{poll_id}
方法 DELETE
说明 删除模板轮询预案
最低支持版本 4

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
template_id str 在会控中表示个人模板id; 在修改/新增模板页面中表示缓存的key [Path参数]
poll_id str 轮询ID [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
_method 若浏览器不支持DELETE,则使用POST请求,并在请求参数中带上_method参数,并设置其值为DELETE,作为不支持DELETE请求的替代方案。
{
  "success": 1,
  "id": ""
}

名称 获取模板轮询预案信息列表
URI /api/v1/mc/personal_templates/{template_id}/prepolls
方法 GET
说明 return data
最低支持版本 4

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
template_id str 在会控中表示个人模板id; 在修改/新增模板页面中表示缓存的key [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
count int 获取的模板轮询预案数量,默认为10,即在包含start在内的后count条数据,如果参数为0表示获取所有轮询预案
start int 模板轮询预案开始行,默认为0,即从符合条件的数据中的第几行取数据,0为第一行数据
order int 排序,默认升序
{
  "total": 0,
  "success": 1,
  "data": [
    {
      "id": "",
      "name": ""
    }
  ]
}

名称 获取模板轮询预案信息
URI /api/v1/mc/personal_templates/{template_id}/prepolls/{poll_id}
方法 GET
说明 获取模板轮询预案信息
最低支持版本 4

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
template_id str 在会控中表示个人模板id; 在修改/新增模板页面中表示缓存的key [Path参数]
poll_id str 轮询ID [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
{
  "success": 1,
  "id": "",
  "name": "",
  "num": 10,
  "keep_time": 5,
  "mode": 1,
  "members": [
    {
      "name": "我是xxx",
      "conf_e164": "000001",
      "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
      "account_type": 1
    }
  ]
}

名称 新增模板混音预案
URI /api/v1/mc/personal_templates/{template_id}/premixs
方法 POST
说明 新增模板混音预案
最低支持版本 4

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
template_id str 在会控中表示个人模板id; 在修改/新增模板页面中表示缓存的key [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
params str(object) 请求内容,以JSON形式发送,需进行UrlEncode,全量更新,需传所有参数
参数名称 数据类型 说明 是否必填 默认值
mode int 混音模式
1-智能混音;
2-定制混音;
1
{
  "success": 1,
  "id": ""
}

名称 修改模板混音预案
URI /api/v1/mc/personal_templates/{template_id}/premixs/{mix_id}
方法 POST
说明 修改模板混音预案
最低支持版本 4

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
template_id str 修改/新增模板页面中表示缓存的key [Path参数]
mix_id str 混音ID [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
params str(object) 请求内容,以JSON形式发送,需进行UrlEncode,全量更新,需传所有参数
参数名称 数据类型 说明 是否必填 默认值
mode int 混音模式
1-智能混音;
2-定制混音;
1
{
  "success": 1,
  "id": ""
}

名称 删除模板混音预案
URI /api/v1/mc/personal_templates/{template_id}/premixs/{mix_id}
方法 DELETE
说明 删除模板混音预案
最低支持版本 4

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
template_id str 在会控中表示个人模板id; 在修改/新增模板页面中表示缓存的key [Path参数]
mix_id str 混音预案ID [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
_method 若浏览器不支持DELETE,则使用POST请求,并在请求参数中带上_method参数,并设置其值为DELETE,作为不支持DELETE请求的替代方案。
{
  "success": 1,
  "id": ""
}

名称 获取模板混音预案信息列表
URI /api/v1/mc/personal_templates/{template_id}/premixs
方法 GET
说明 return data
最低支持版本 4

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
template_id str 在会控中表示个人模板id; 在修改/新增模板页面中表示缓存的key [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
count int 获取的模板混音预案数量,默认为10,即在包含start在内的后count条数据,如果参数为0表示获取所有混音预案
start int 模板混音预案开始行,默认为0,即从符合条件的数据中的第几行取数据,0为第一行数据
order int 排序,默认升序
{
  "total": 0,
  "success": 1,
  "data": [
    {
      "id": "",
      "name": ""
    }
  ]
}

名称 获取模板混音预案信息
URI /api/v1/mc/personal_templates/{template_id}/premixs/{mix_id}
方法 GET
说明 获取模板混音预案信息
最低支持版本 4

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
template_id str 在会控中表示个人模板id; 在修改/新增模板页面中表示缓存的key [Path参数]
mix_id str 混音ID [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
{
  "success": 1,
  "id": "",
  "name": "",
  "mode": 1,
  "members": [
    {
      "name": "我是xxx",
      "conf_e164": "000001",
      "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
      "account_type": 1
    }
  ],
  "active_members": [
    {
      "name": "我是xxx",
      "conf_e164": "000001",
      "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
      "account_type": 1
    }
  ]
}

名称 新增模板电视墙预案
URI /api/v1/mc/personal_templates/{template_id}/pretvwalls
方法 POST
说明 新增模板电视墙预案
最低支持版本 4

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
template_id str 在会控中表示个人模板id; 在修改/新增模板页面中表示缓存的key [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
params str(object) 请求内容,以JSON形式发送,需进行UrlEncode,全量更新,需传所有参数
参数名称 数据类型 说明 是否必填 默认值
name str 预案名称
tvwalls array 电视墙列表
    style_id str 电视墙风格moid
    mode int 电视墙模式
1-定制画面;
2-批量轮询;
1
    show_mt_name int 是否显示终端名称 1
    batch_poll object 批量轮询
        name str 预案名称
        num int 轮询次数,0表示无限次轮询 10
        keep_time int 轮询间隔时间(秒) 5
        mode int 轮询模式
1-视频轮询;
3-音视频轮询;
1
        members array 轮询成员
            name str 名称,最大字符长度:128个字节 我是xxx
            conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
            account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
            account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
    members array 电视墙成员
        name str 名称,最大字符长度:128个字节 我是xxx
        hdu_id str 设备id号_通道索引号 2_1
        conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
        account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
        member_type int 跟随类型
1-会控指定;
2-发言人跟随;
3-管理方跟随;
4-会议轮询跟随;
5-单通道轮询;
6-选看画面合成;
7-批量轮询(仅返回数据时使用);
8-自主多画面;
9-四分屏;
10-内容共享跟随;
5
        account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
        mt_chn_idx int 终端通道 id 2
        poll object 单通道轮询
            name str 预案名称
            num int 轮询次数,0表示无限次轮询 10
            keep_time int 轮询间隔时间(秒) 5
            mode int 轮询模式
1-视频轮询;
3-音视频轮询;
1
            members array 轮询成员
                name str 名称,最大字符长度:128个字节 我是xxx
                conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
                account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
                account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
        vmp object 自主多画面
            background_image str 合成宣讲背景图片id
            name str 预案名称
            preferred_style int 合成风格偏好
0-经典;
1-一大多小;
2-等大;
1
            background_image_enable int 合成宣讲背景图片是否开启
0-关闭;
1-开启;
0
            layout int 画面合成风格
1-一画面全屏;
2-两画面: 2等大,居中(1行2列);
3-两画面: 1大1小,1大全屏,1小右下;
4-三画面: 等大,1上2下;
5-四画面: 等大,2行2列;
6-六画面: 1大5小,1大左上,2小右上(2行1列),3小下(1行3列);
7-八画面: 1大7小,1大左上,3小右上(3行1列),4小下(1行4列);
8-九画面: 等大,3行3列;
9-十画面: 2大8小,2大左(2行1列),8小右(4行2列);
10-十三画面: 1大12小,大1左上,4小右上(2行2列),8小下(2行4列);
11-十六画面: 16等分,4x4;
12-四画面: 1大3小,1大左,3小右(3行1列);
13-七画面: 3大4小,2大上(1行2列),1大左下,4小右下(2行2列);
14-二十画面: 2大18小,2大上(1行2列),18小下(3行6列);
15-十画面: 2大8小,2大上(1行2列),8小下(2行4列);
17-十四画面: 2大12小,2大左上(1行2列),2小右上(2行1列),10小下(2行5列);
18-十画面: 2大8小,4小上(1行4列),2大中(1行2列),4小下(1行4列);
19-十三画面: 1大12小,4小上(1行4列),2小左中(2行1列),1大中中,2小右中(2行1列), 4小下(1行4列);
20-十五画面: 3大12小,3大上(1行3列),12小下(2行6列);
21-六画面: 6等大,居中(2行3列);
22-三画面: 1大2小,1大左,2小右(2行1列);
23-三画面: 等大,1左,2右(2行1列);
26-四画面: 1大3小,1大上,3小下(1行3列);
27-二十五画面: 等大,5行5列;
30-七画面: 1大6小,1大上,6小下(1行6列);
34-五画面: 1大4小,1大左,4小右(4行1列);
35-五画面: 1大4小,1大上,4小下(1行4列);
38-十一画面: 1大10小,1大上,10小下(2行5列);
39-十二画面: 3大9小,2大上(1行2列),1大左下,9小右下(3行3列);
46-十七画面: 1大16小,1大左上,6小右上(3行2列),10小下(2行5列);
48-十八画面: 6大12小,6小上(1行6列),6大居中(2行3列),6小下(1行6列);
49-十八画面: 6大12小,6大上(2行3列),12小下(2行6列);
51-十九画面: 2大17小,2大左上(1行2列),2小右上(2行1列),15小下(3行5列);
54-二十一画面: 1大20小,6小上(1行6列),4小左中(4行1列),1大中中,4小右中(4行1列),6小下(1行6列);
56-二十二画面: 1大21小,1大左上,6小右上(2行3列),15小下(3行5列);
59-二十四画面: 4大20小,6小上(1行6列),4小左中(4行1列),4大中中(2行2列),4小右中(4行1列),6小下(1行6列);
61-两画面: 1大1小,1大全屏,1小右上;
62-两画面: 1大1小,1大全屏,1小左下;
63-两画面: 1大1小,1大全屏,1小左上;
64-六画面: 1大5小,1大左,5小右(5行1列),3小下(1行3列);
65-十一画面: 3大8小,3大上(1行3列),8小下(2行4列);
66-十二画面: 2大10小,2大上(1行2列),10小下(2行5列);
67-十五画面: 1大14小,1大左上,8小右上(4行2列),6小下(1行6列);
68-两画面: 2等大,居中(2行1列);
69-两画面: 1大1小,1大左中,1小右中;
70-三画面: 3等大,居中(1行3列);
71-三画面: 3等大,2左(2行1列),1右中;
72-四画面: 1大3小,1大全屏,3小下中(1行3列);
73-五画面: 1大4小,4小左(4行1列),1大右;
74-六画面: 1大5小,3小左(3行1列),1大右上,2小右下(1行2列);
75-七画面: 3大4小,2大上,4小左下(2行2列),1大右下;
76-八画面: 8等大,居中(2行4列);
77-八画面: 1大7小,4小左(4行1列),1大右上,3小右下(1行3列);
78-九画面: 1大8小,1大上,8小下(1行8列);
79-九画面: 1大8小,1大左上,3小右上(3行1列),5小下(1行5列);
80-十二画面: 12等大,居中(3行4列);
81-十三画面: 1大12小,4小左(4行1列),1大中上,4小中下(2行2列),4小右(4行1列);
82-十四画面: 2大12小,4小左(4行1列),2大右上(1行2列),8小右下(2行4列);
83-十五画面: 1大14小,5小左(5行1列),1大中上,4小中下(1行4列),5小右(5行1列);
84-十七画面: 1大16小,10小左(5行2列),1大右上,6小右下(2行3列);
85-十九画面: 2大17小,5小左(5行1列),2大右上(1行2列),12小右下(3行4列);
86-二十画面: 20等大,居中(4行5列);
87-二十一画面: 1大20小,6小左(6行1列),1大中上,8小中下(2行4列),6小右(6行1列);
88-二十四画面: 24等大,居中(4行6列);
89-二十四画面: 4大20小,6小左(6行1列),4大中上(2行2列),8小中下(2行4列),6小右(6行1列);
5
            mode int 画面合成模式
1-定制画面合成;
2-自动画面合成;
3-自动画面合成批量轮询(预留);
4-定制画面合成批量轮询;
2
            except_self int 是否开启自动画面合成n-1模式,默认为0,即不显示自己的画面,仅自动画面合成时有效 0
            voice_hint int 是否识别声音来源
0-否;
1-是;
1
            show_mt_name int 是否显示别名
0-否;
1-是;
1
            broadcast int 是否向终端广播
0-否;
1-是;
1
            mt_name_style object 画面合成参数
                font_color str 台标字体三原色#RGB格式,十六进制表示,默认为#FFFFFF #FFFFFF
                position int 台标显示位置,默认为1
0-左上角;
1-左下角;
2-右上角;
3-右下角;
4-底部中间;
1
                font_size int 台标字体大小
0-小;
1-中;
2-大;
1
            poll object 批量轮询
                name str 预案名称
                num int 轮询次数,0表示无限次轮询 10
                keep_time int 轮询间隔时间(秒) 5
                mode int 轮询模式
1-视频轮询;
3-音视频轮询;
1
                members array 轮询成员
                    name str 名称,最大字符长度:128个字节 我是xxx
                    conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
                    account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
                    account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
            members array 画面合成成员
                name str 名称,最大字符长度:128个字节 我是xxx
                conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
                account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
                member_type int 跟随类型
1-会控指定;
2-发言人跟随;
3-管理方跟随;
4-会议轮询跟随;
6-单通道轮询;
7-内容共享跟随;
6
                chn_idx int 在画面合成中的位置 0
                account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
                mt_chn_idx int 终端通道 id 2
                poll object 单通道轮询设置
                    name str 预案名称
                    num int 轮询次数,0表示无限次轮询 10
                    keep_time int 轮询间隔时间(秒) 5
                    mode int 轮询模式
1-视频轮询;
3-音视频轮询;
1
                    members array 轮询成员
                        name str 名称,最大字符长度:128个字节 我是xxx
                        conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
                        account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
                        account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
        spilt array 四分屏成员
            name str 名称,最大字符长度:128个字节 我是xxx
            conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
            account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
            sub_chn_index int 四分屏索引 2
            account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
            mt_chn_idx int 终端通道 id 2
{
  "success": 1,
  "id": ""
}

名称 更新模板电视墙预案
URI /api/v1/mc/personal_templates/{template_id}/pretvwalls/{pre_id}
方法 POST
说明 更新模板电视墙预案
最低支持版本 4

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
template_id str 修改/新增模板页面中表示缓存的key [Path参数]
pre_id str 电视墙ID [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
params str(object) 请求内容,以JSON形式发送,需进行UrlEncode,全量更新,需传所有参数
参数名称 数据类型 说明 是否必填 默认值
name str 预案名称
tvwalls array 电视墙列表
    style_id str 电视墙风格moid
    mode int 电视墙模式
1-定制画面;
2-批量轮询;
1
    show_mt_name int 是否显示终端名称 1
    batch_poll object 批量轮询
        name str 预案名称
        num int 轮询次数,0表示无限次轮询 10
        keep_time int 轮询间隔时间(秒) 5
        mode int 轮询模式
1-视频轮询;
3-音视频轮询;
1
        members array 轮询成员
            name str 名称,最大字符长度:128个字节 我是xxx
            conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
            account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
            account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
    members array 电视墙成员
        name str 名称,最大字符长度:128个字节 我是xxx
        hdu_id str 设备id号_通道索引号 2_1
        conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
        account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
        member_type int 跟随类型
1-会控指定;
2-发言人跟随;
3-管理方跟随;
4-会议轮询跟随;
5-单通道轮询;
6-选看画面合成;
7-批量轮询(仅返回数据时使用);
8-自主多画面;
9-四分屏;
10-内容共享跟随;
5
        account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
        mt_chn_idx int 终端通道 id 2
        poll object 单通道轮询
            name str 预案名称
            num int 轮询次数,0表示无限次轮询 10
            keep_time int 轮询间隔时间(秒) 5
            mode int 轮询模式
1-视频轮询;
3-音视频轮询;
1
            members array 轮询成员
                name str 名称,最大字符长度:128个字节 我是xxx
                conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
                account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
                account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
        vmp object 自主多画面
            background_image str 合成宣讲背景图片id
            name str 预案名称
            preferred_style int 合成风格偏好
0-经典;
1-一大多小;
2-等大;
1
            background_image_enable int 合成宣讲背景图片是否开启
0-关闭;
1-开启;
0
            layout int 画面合成风格
1-一画面全屏;
2-两画面: 2等大,居中(1行2列);
3-两画面: 1大1小,1大全屏,1小右下;
4-三画面: 等大,1上2下;
5-四画面: 等大,2行2列;
6-六画面: 1大5小,1大左上,2小右上(2行1列),3小下(1行3列);
7-八画面: 1大7小,1大左上,3小右上(3行1列),4小下(1行4列);
8-九画面: 等大,3行3列;
9-十画面: 2大8小,2大左(2行1列),8小右(4行2列);
10-十三画面: 1大12小,大1左上,4小右上(2行2列),8小下(2行4列);
11-十六画面: 16等分,4x4;
12-四画面: 1大3小,1大左,3小右(3行1列);
13-七画面: 3大4小,2大上(1行2列),1大左下,4小右下(2行2列);
14-二十画面: 2大18小,2大上(1行2列),18小下(3行6列);
15-十画面: 2大8小,2大上(1行2列),8小下(2行4列);
17-十四画面: 2大12小,2大左上(1行2列),2小右上(2行1列),10小下(2行5列);
18-十画面: 2大8小,4小上(1行4列),2大中(1行2列),4小下(1行4列);
19-十三画面: 1大12小,4小上(1行4列),2小左中(2行1列),1大中中,2小右中(2行1列), 4小下(1行4列);
20-十五画面: 3大12小,3大上(1行3列),12小下(2行6列);
21-六画面: 6等大,居中(2行3列);
22-三画面: 1大2小,1大左,2小右(2行1列);
23-三画面: 等大,1左,2右(2行1列);
26-四画面: 1大3小,1大上,3小下(1行3列);
27-二十五画面: 等大,5行5列;
30-七画面: 1大6小,1大上,6小下(1行6列);
34-五画面: 1大4小,1大左,4小右(4行1列);
35-五画面: 1大4小,1大上,4小下(1行4列);
38-十一画面: 1大10小,1大上,10小下(2行5列);
39-十二画面: 3大9小,2大上(1行2列),1大左下,9小右下(3行3列);
46-十七画面: 1大16小,1大左上,6小右上(3行2列),10小下(2行5列);
48-十八画面: 6大12小,6小上(1行6列),6大居中(2行3列),6小下(1行6列);
49-十八画面: 6大12小,6大上(2行3列),12小下(2行6列);
51-十九画面: 2大17小,2大左上(1行2列),2小右上(2行1列),15小下(3行5列);
54-二十一画面: 1大20小,6小上(1行6列),4小左中(4行1列),1大中中,4小右中(4行1列),6小下(1行6列);
56-二十二画面: 1大21小,1大左上,6小右上(2行3列),15小下(3行5列);
59-二十四画面: 4大20小,6小上(1行6列),4小左中(4行1列),4大中中(2行2列),4小右中(4行1列),6小下(1行6列);
61-两画面: 1大1小,1大全屏,1小右上;
62-两画面: 1大1小,1大全屏,1小左下;
63-两画面: 1大1小,1大全屏,1小左上;
64-六画面: 1大5小,1大左,5小右(5行1列),3小下(1行3列);
65-十一画面: 3大8小,3大上(1行3列),8小下(2行4列);
66-十二画面: 2大10小,2大上(1行2列),10小下(2行5列);
67-十五画面: 1大14小,1大左上,8小右上(4行2列),6小下(1行6列);
68-两画面: 2等大,居中(2行1列);
69-两画面: 1大1小,1大左中,1小右中;
70-三画面: 3等大,居中(1行3列);
71-三画面: 3等大,2左(2行1列),1右中;
72-四画面: 1大3小,1大全屏,3小下中(1行3列);
73-五画面: 1大4小,4小左(4行1列),1大右;
74-六画面: 1大5小,3小左(3行1列),1大右上,2小右下(1行2列);
75-七画面: 3大4小,2大上,4小左下(2行2列),1大右下;
76-八画面: 8等大,居中(2行4列);
77-八画面: 1大7小,4小左(4行1列),1大右上,3小右下(1行3列);
78-九画面: 1大8小,1大上,8小下(1行8列);
79-九画面: 1大8小,1大左上,3小右上(3行1列),5小下(1行5列);
80-十二画面: 12等大,居中(3行4列);
81-十三画面: 1大12小,4小左(4行1列),1大中上,4小中下(2行2列),4小右(4行1列);
82-十四画面: 2大12小,4小左(4行1列),2大右上(1行2列),8小右下(2行4列);
83-十五画面: 1大14小,5小左(5行1列),1大中上,4小中下(1行4列),5小右(5行1列);
84-十七画面: 1大16小,10小左(5行2列),1大右上,6小右下(2行3列);
85-十九画面: 2大17小,5小左(5行1列),2大右上(1行2列),12小右下(3行4列);
86-二十画面: 20等大,居中(4行5列);
87-二十一画面: 1大20小,6小左(6行1列),1大中上,8小中下(2行4列),6小右(6行1列);
88-二十四画面: 24等大,居中(4行6列);
89-二十四画面: 4大20小,6小左(6行1列),4大中上(2行2列),8小中下(2行4列),6小右(6行1列);
5
            mode int 画面合成模式
1-定制画面合成;
2-自动画面合成;
3-自动画面合成批量轮询(预留);
4-定制画面合成批量轮询;
2
            except_self int 是否开启自动画面合成n-1模式,默认为0,即不显示自己的画面,仅自动画面合成时有效 0
            voice_hint int 是否识别声音来源
0-否;
1-是;
1
            show_mt_name int 是否显示别名
0-否;
1-是;
1
            broadcast int 是否向终端广播
0-否;
1-是;
1
            mt_name_style object 画面合成参数
                font_color str 台标字体三原色#RGB格式,十六进制表示,默认为#FFFFFF #FFFFFF
                position int 台标显示位置,默认为1
0-左上角;
1-左下角;
2-右上角;
3-右下角;
4-底部中间;
1
                font_size int 台标字体大小
0-小;
1-中;
2-大;
1
            poll object 批量轮询
                name str 预案名称
                num int 轮询次数,0表示无限次轮询 10
                keep_time int 轮询间隔时间(秒) 5
                mode int 轮询模式
1-视频轮询;
3-音视频轮询;
1
                members array 轮询成员
                    name str 名称,最大字符长度:128个字节 我是xxx
                    conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
                    account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
                    account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
            members array 画面合成成员
                name str 名称,最大字符长度:128个字节 我是xxx
                conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
                account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
                member_type int 跟随类型
1-会控指定;
2-发言人跟随;
3-管理方跟随;
4-会议轮询跟随;
6-单通道轮询;
7-内容共享跟随;
6
                chn_idx int 在画面合成中的位置 0
                account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
                mt_chn_idx int 终端通道 id 2
                poll object 单通道轮询设置
                    name str 预案名称
                    num int 轮询次数,0表示无限次轮询 10
                    keep_time int 轮询间隔时间(秒) 5
                    mode int 轮询模式
1-视频轮询;
3-音视频轮询;
1
                    members array 轮询成员
                        name str 名称,最大字符长度:128个字节 我是xxx
                        conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
                        account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
                        account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
        spilt array 四分屏成员
            name str 名称,最大字符长度:128个字节 我是xxx
            conf_e164 str 所属会议e164号,级联会议时为本级会议e164号 000001
            account str 帐号,最大字符长度:128个字节 c69da1ef-5930-47e0-9a79-dfa083de0208
            sub_chn_index int 四分屏索引 2
            account_type int 帐号类型
1-moid;
4-非系统邮箱;
5-e164号;
6-电话;
7-ip地址;
8-别名@ip(监控前端);
1
            mt_chn_idx int 终端通道 id 2
{
  "success": 1,
  "id": ""
}

名称 删除模板电视墙预案
URI /api/v1/mc/personal_templates/{template_id}/pretvwalls/{pre_id}
方法 DELETE
说明 删除模板电视墙预案
最低支持版本 4

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
template_id str 在会控中表示个人模板id; 在修改/新增模板页面中表示缓存的key [Path参数]
pre_id str 电视墙ID [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
_method 若浏览器不支持DELETE,则使用POST请求,并在请求参数中带上_method参数,并设置其值为DELETE,作为不支持DELETE请求的替代方案。
{
  "success": 1,
  "id": ""
}

名称 获取模板电视墙预案列表
URI /api/v1/mc/personal_templates/{template_id}/pretvwalls
方法 GET
说明 return data
最低支持版本 4

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
template_id str 在会控中表示个人模板id; 在修改/新增模板页面中表示缓存的key [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
count int 获取的模板电视墙预案数量,默认为10,即在包含start在内的后count条数据,如果参数为0表示获取所有电视墙预案
start int 模板电视墙预案开始行,默认为0,即从符合条件的数据中的第几行取数据,0为第一行数据
order int 排序,默认升序
{
  "total": 0,
  "success": 1,
  "data": [
    {
      "id": "",
      "name": ""
    }
  ]
}

名称 获取模板电视墙预案详情
URI /api/v1/mc/personal_templates/{template_id}/pretvwalls/{pre_id}
方法 GET
说明 获取模板电视墙预案信息
最低支持版本 4

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
template_id str 在会控中表示个人模板id; 在修改/新增模板页面中表示缓存的key [Path参数]
pre_id str 电视墙模板ID [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
{
  "success": 1,
  "id": "",
  "name": "",
  "tvwalls": [
    {
      "style_id": "",
      "mode": 1,
      "show_mt_name": 1,
      "batch_poll": {
        "name": "",
        "num": 10,
        "keep_time": 5,
        "mode": 1,
        "members": [
          {
            "name": "我是xxx",
            "conf_e164": "000001",
            "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
            "account_type": 1
          }
        ]
      },
      "members": [
        {
          "name": "我是xxx",
          "hdu_id": "2_1",
          "conf_e164": "000001",
          "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
          "member_type": 5,
          "account_type": 1,
          "mt_chn_idx": 2,
          "poll": {
            "name": "",
            "num": 10,
            "keep_time": 5,
            "mode": 1,
            "members": [
              {
                "name": "我是xxx",
                "conf_e164": "000001",
                "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
                "account_type": 1
              }
            ]
          },
          "vmp": {
            "background_image": "",
            "name": "",
            "preferred_style": 1,
            "background_image_enable": 0,
            "layout": 5,
            "mode": 2,
            "except_self": 0,
            "voice_hint": 1,
            "show_mt_name": 1,
            "broadcast": 1,
            "mt_name_style": {
              "font_color": "#FFFFFF",
              "position": 1,
              "font_size": 1
            },
            "poll": {
              "name": "",
              "num": 10,
              "keep_time": 5,
              "mode": 1,
              "members": [
                {
                  "name": "我是xxx",
                  "conf_e164": "000001",
                  "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
                  "account_type": 1
                }
              ]
            },
            "members": [
              {
                "name": "我是xxx",
                "conf_e164": "000001",
                "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
                "member_type": 6,
                "chn_idx": 0,
                "account_type": 1,
                "mt_chn_idx": 2,
                "poll": {
                  "name": "",
                  "num": 10,
                  "keep_time": 5,
                  "mode": 1,
                  "members": [
                    {
                      "name": "我是xxx",
                      "conf_e164": "000001",
                      "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
                      "account_type": 1
                    }
                  ]
                }
              }
            ]
          },
          "spilt": [
            {
              "name": "我是xxx",
              "conf_e164": "000001",
              "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
              "sub_chn_index": 2,
              "account_type": 1,
              "mt_chn_idx": 2
            }
          ]
        }
      ]
    }
  ]
}

电视墙配置接口

名称 获取电视墙风格列表
URI /api/v1/mc/tvwall_styles
方法 GET
说明
最低支持版本 4

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
start int 默认为0,即从符合条件的数据中的第几行取数据,0为第一行数据 0
count int 默认为10,即在包含start在内的后count条数据,如果参数为0表示获取所有 0
order int 以风格创建时间排序; 0: 正序; 1:倒序 0
{
  "total": 0,
  "success": 1,
  "data": [
    {
      "id": "339267be-e421-4a90-9211-263013baa52f",
      "name": "test"
    }
  ]
}

名称 获取电视墙风格详情
URI /api/v1/mc/tvwall_styles/{style_id}
方法 GET
说明
最低支持版本 4

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
style_id str 风格id [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
status int 是否获取通道实时信息
{
  "success": 1,
  "style_id": "339267be-e421-4a90-9211-263013baa52f",
  "name": "test",
  "creator": "admin",
  "layout_x": 1,
  "layout_y": 1,
  "details": [
    {
      "hdu_alias": "hdu5",
      "hdu_id": "3_0",
      "box_height": 236,
      "box_x": 32,
      "box_width": 420,
      "box_y": 107,
      "parent_box_width": 900,
      "silence": 0,
      "online": 0,
      "used": 0,
      "volume": 0
    }
  ]
}

会议文件接口

名称 上传会议文件
URI /api/v1/mc/meeting_files/{meeting_id}
方法 POST
说明 上传会议文件,一次只能上传一个文件,每个文件不超过20MB,一个会议最多保存10个文件
最低支持版本 1

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
meeting_id str 会议moid,预约会议时传 meetingKey [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
file File 文件
{
  "success": 1,
  "meeting_file": {
    "bgi_cmd": "",
    "meeting_id": "2dd76a855d894d7fa4e1a759dad45350",
    "creator_moid": "81917360-7e4d-4b58-a8f8-a136334b1c6e",
    "creator_name": "admin",
    "file_id": "98837a90489a4b9598a06582e85ba50d",
    "file_size": "1.1",
    "file_url": "/api/v1/mc/meeting_file/98837a90489a4b9598a06582e85ba50d",
    "file_type": "txt",
    "extension_name": "txt",
    "file_name": "test.txt",
    "create_time": "2026-03-31T15:42:41+08:00"
  }
}

名称 删除会议文件
URI /api/v1/mc/meeting_files/{file_id}
方法 DELETE
说明 删除会议文件
最低支持版本 1

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
file_id str 文件id [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
_method 若浏览器不支持DELETE,则使用POST请求,并在请求参数中带上_method参数,并设置其值为DELETE,作为不支持DELETE请求的替代方案。
{
  "success": 1,
  "meeting_file": {
    "bgi_cmd": "",
    "meeting_id": "2dd76a855d894d7fa4e1a759dad45350",
    "creator_moid": "81917360-7e4d-4b58-a8f8-a136334b1c6e",
    "creator_name": "admin",
    "file_id": "98837a90489a4b9598a06582e85ba50d",
    "file_size": "1.1",
    "file_url": "/api/v1/mc/meeting_file/98837a90489a4b9598a06582e85ba50d",
    "file_type": "txt",
    "extension_name": "txt",
    "file_name": "test.txt",
    "create_time": "2026-03-31T15:42:41+08:00"
  }
}

名称 获取会议文件列表
URI /api/v1/mc/meeting_files/{meeting_id}
方法 GET
说明 获取会议文件列表,meeting_id是会议moid,文件7天后自动删除,
最低支持版本 1

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
meeting_id str 会议moid,预约会议时传 meetingKey [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
{
  "total": 0,
  "success": 1,
  "meeting_files": [
    {
      "bgi_cmd": "",
      "meeting_id": "2dd76a855d894d7fa4e1a759dad45350",
      "creator_moid": "81917360-7e4d-4b58-a8f8-a136334b1c6e",
      "creator_name": "admin",
      "file_id": "98837a90489a4b9598a06582e85ba50d",
      "file_size": "1.1",
      "file_url": "/api/v1/mc/meeting_file/98837a90489a4b9598a06582e85ba50d",
      "file_type": "txt",
      "extension_name": "txt",
      "file_name": "test.txt",
      "create_time": "2026-03-31T15:42:41+08:00"
    }
  ]
}

名称 上传背景图片
URI /api/v1/mc/background_images
方法 POST
说明 背景图片支持上传图片格式为jpg、jpeg,名称长度不超过15个字符,图片大小不超过5M,建议上传尺寸为:3840*2160、1920*1080,可批量上传
最低支持版本 11

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
files str 图片文件,该参数需要配合request的content-type改为multipart/form-data一起使用
{
  "description": "",
  "error_code": 0,
  "fail_result": 1,
  "success": 1,
  "list": [
    {
      "bgi_cmd": "",
      "meeting_id": "2dd76a855d894d7fa4e1a759dad45350",
      "creator_moid": "81917360-7e4d-4b58-a8f8-a136334b1c6e",
      "creator_name": "admin",
      "file_id": "98837a90489a4b9598a06582e85ba50d",
      "file_size": "1.1",
      "file_url": "/api/v1/mc/meeting_file/98837a90489a4b9598a06582e85ba50d",
      "file_type": "txt",
      "extension_name": "txt",
      "file_name": "test.txt",
      "create_time": "2026-03-31T15:42:41+08:00"
    }
  ]
}

名称 获取背景图片列表
URI /api/v1/mc/background_images
方法 GET
说明
最低支持版本 11

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
{
  "total": 0,
  "success": 1,
  "list": [
    {
      "bgi_cmd": "",
      "meeting_id": "2dd76a855d894d7fa4e1a759dad45350",
      "creator_moid": "81917360-7e4d-4b58-a8f8-a136334b1c6e",
      "creator_name": "admin",
      "file_id": "98837a90489a4b9598a06582e85ba50d",
      "file_size": "1.1",
      "file_url": "/api/v1/mc/meeting_file/98837a90489a4b9598a06582e85ba50d",
      "file_type": "txt",
      "extension_name": "txt",
      "file_name": "test.txt",
      "create_time": "2026-03-31T15:42:41+08:00"
    }
  ]
}

名称 预览单个背景图片
URI /api/v1/mc/background_images/{file_id}/preview
方法 GET
说明
最低支持版本 11

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
file_id str 图片id [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
{
  "success": 1
}

名称 获取单个背景图片详情
URI /api/v1/mc/background_images/{file_id}
方法 GET
说明
最低支持版本 11

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
file_id str 图片id [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
{
  "success": 1,
  "data": {
    "bgi_cmd": "",
    "meeting_id": "2dd76a855d894d7fa4e1a759dad45350",
    "creator_moid": "81917360-7e4d-4b58-a8f8-a136334b1c6e",
    "creator_name": "admin",
    "file_id": "98837a90489a4b9598a06582e85ba50d",
    "file_size": "1.1",
    "file_url": "/api/v1/mc/meeting_file/98837a90489a4b9598a06582e85ba50d",
    "file_type": "txt",
    "extension_name": "txt",
    "file_name": "test.txt",
    "create_time": "2026-03-31T15:42:41+08:00"
  }
}

名称 删除背景图片
URI /api/v1/mc/background_images
方法 DELETE
说明
最低支持版本 11

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
_method 若浏览器不支持DELETE,则使用POST请求,并在请求参数中带上_method参数,并设置其值为DELETE,作为不支持DELETE请求的替代方案。
params str(object) 请求内容,以JSON形式发送,需进行UrlEncode,全量更新,需传所有参数
参数名称 数据类型 说明 是否必填 默认值
file_ids array 图片ids
    str str 字符
{
  "success": 1
}

例会接口

名称 保存例会
URI /api/v1/mc/regular_meeting
方法 POST
说明
最低支持版本 6

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
params str(object) 请求内容,以JSON形式发送,需进行UrlEncode,全量更新,需传所有参数
参数名称 数据类型 说明 是否必填 默认值
name str 会议名称,
1.字符限制:
a.不支持输入特殊字符:% & * ^ ~ ' " " ? / \ < > | ` " $
b.且首字符和尾字符不支持输入,下划线(_) 减号(-) 小数点(.) @ (除首尾字符可以输入)
2.最大字符长度:64个字节
传统会议
start_time str 会议开始时间,格式为ISO8601:2000标准 2026-03-31T15:42:41+08:00
conf_type int 会议类型,枚举:
0-传统;
1-端口;
2-SFU纯转发会议;
4-auto;
自动会议类型规则:
一.终端支持包含RTC或不包含RTC:
- 用户域有端口权限并且机房能力支持端口混合能力,开端口混合会议,机房不支持端口混合能力则优先传统混合会议,没有端口权限则开传统/传统混合会议
二.终端只支持RTC:
1.用户域有SFU权限,没有端口权限,机房支持传统混合能力则开传统混合会议,不支持则开SFU纯转发会议
2.用户域有SFU权限,有端口权限,机房支持端口混合能力,则开端口混合会议,不支持则优先开传统混合会议,机房不支持端口混合和传统混合能力则开SFU纯转发会议
3.用户域没有SFU权限,则返回错误码
0
voice_activity_detection int 是否开启语言激励
0-不开启;
1-开启;
0
max_join_mt int 最大与会终端数,默认为192
192-大型192方会议;
192
{
  "conf_id": "0001234",
  "meeting_id": "2dd76a855d894d7fa4e1a759dad45350",
  "machine_room_moid": "mooooooo-oooo-oooo-oooo-defaultmachi",
  "success": 1
}

名称 修改例会
URI /api/v1/mc/regular_meeting/{regular_meeting_moid}
方法 POST
说明
最低支持版本 6

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
regular_meeting_moid str 例会moid

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
params str(object) 请求内容,以JSON形式发送,需进行UrlEncode,全量更新,需传所有参数
参数名称 数据类型 说明 是否必填 默认值
name str 会议名称,
1.字符限制:
a.不支持输入特殊字符:% & * ^ ~ ' " " ? / \ < > | ` " $
b.且首字符和尾字符不支持输入,下划线(_) 减号(-) 小数点(.) @ (除首尾字符可以输入)
2.最大字符长度:64个字节
传统会议
start_time str 会议开始时间,格式为ISO8601:2000标准 2026-03-31T15:42:41+08:00
conf_type int 会议类型,枚举:
0-传统;
1-端口;
2-SFU纯转发会议;
4-auto;
自动会议类型规则:
一.终端支持包含RTC或不包含RTC:
- 用户域有端口权限并且机房能力支持端口混合能力,开端口混合会议,机房不支持端口混合能力则优先传统混合会议,没有端口权限则开传统/传统混合会议
二.终端只支持RTC:
1.用户域有SFU权限,没有端口权限,机房支持传统混合能力则开传统混合会议,不支持则开SFU纯转发会议
2.用户域有SFU权限,有端口权限,机房支持端口混合能力,则开端口混合会议,不支持则优先开传统混合会议,机房不支持端口混合和传统混合能力则开SFU纯转发会议
3.用户域没有SFU权限,则返回错误码
0
voice_activity_detection int 是否开启语言激励
0-不开启;
1-开启;
0
max_join_mt int 最大与会终端数,默认为192
192-大型192方会议;
192
{
  "conf_id": "0001234",
  "meeting_id": "2dd76a855d894d7fa4e1a759dad45350",
  "machine_room_moid": "mooooooo-oooo-oooo-oooo-defaultmachi",
  "success": 1
}

名称 取消例会(批量)
URI /api/v1/mc/regular_meeting/{regular_meeting_moid}
方法 DELETE
说明
最低支持版本 6

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
regular_meeting_moid str 例会moid

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
_method 若浏览器不支持DELETE,则使用POST请求,并在请求参数中带上_method参数,并设置其值为DELETE,作为不支持DELETE请求的替代方案。
params str(object) 请求内容,以JSON形式发送,需进行UrlEncode,全量更新,需传所有参数
参数名称 数据类型 说明 是否必填 默认值
meeting_moids str 被取消的会议moid args,args
reason str 取消原因
{
  "success": 1
}

名称 查看例会信息
URI /api/v1/mc/regular_meeting/{regular_meeting_moid}
方法 GET
说明
最低支持版本 6

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
regular_meeting_moid str 例会moid

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
{
  "meeting_id": "66c19ddf9100483493e0162fdb81ac59",
  "conf_id": "0000001",
  "name": "xxx的会议",
  "state": 1,
  "start_time": "2026-03-31T15:42:41+08:00",
  "end_time": "2026-03-31T15:42:41+08:00",
  "e164": "0000001",
  "encrypted_key": "",
  "platform_id": "",
  "telephone": "",
  "meeting_moid": "",
  "conf_level": "",
  "brief": "",
  "password": "",
  "regular_meeting_moid": "",
  "vmr_name": "",
  "mobile": "",
  "user_domain_moid": "",
  "live_url": "",
  "qr_code_base64": "",
  "live_password": "",
  "encrypted_type": 0,
  "conf_type": 0,
  "bitrate": 0,
  "success": 0,
  "doubleflow": 0,
  "one_reforming": 0,
  "call_times": 0,
  "call_interval": 0,
  "call_mode": 0,
  "safe_conf": 0,
  "security_level": 0,
  "closed_conf": 0,
  "duration": 0,
  "conf_protocol": 0,
  "auto_end": 0,
  "conf_category": 0,
  "cascade_mode": 0,
  "cascade_return_para": 0,
  "enable_audience": 0,
  "cascade_return": 0,
  "cascade_auto_end": 0,
  "cascade_upload": 0,
  "force_mute": 0,
  "fec_mode": 0,
  "enable_rtc": 0,
  "sms": 0,
  "mute_filter": 0,
  "is_signed": 0,
  "is_recorded": 0,
  "mute": 0,
  "wechat": 0,
  "silence": 0,
  "email": 0,
  "voice_activity_detection": 0,
  "is_edit": 0,
  "public_conf": 0,
  "quantum_encryption": 0,
  "enable_dual_list": 0,
  "anonymous_mt": 0,
  "multi_stream": 0,
  "watermark": 0,
  "call_chase": 0,
  "auto_cascade": 0,
  "video_quality": 0,
  "dual_mode": 0,
  "dual_lock": 0,
  "file_num": 0,
  "vacinterval": 0,
  "preoccupy_resource": 0,
  "encrypted_auth": 0,
  "max_join_mt": 0,
  "last_modify_time": "2026-03-31T15:42:41+08:00",
  "ai": {
    "record": 0,
    "sign": 0,
    "subtitle": 0
  },
  "callee": {
    "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
    "account_type": 1,
    "name": "我是xxx",
    "conf_e164": "000001"
  },
  "tv_wall": {
    "name": "",
    "tvwalls": [
      {
        "style_id": "",
        "mode": 1,
        "show_mt_name": 1,
        "batch_poll": {
          "name": "",
          "num": 10,
          "keep_time": 5,
          "mode": 1,
          "members": [
            {
              "name": "我是xxx",
              "conf_e164": "000001",
              "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
              "account_type": 1
            }
          ]
        },
        "members": [
          {
            "name": "我是xxx",
            "hdu_id": "2_1",
            "conf_e164": "000001",
            "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
            "member_type": 5,
            "account_type": 1,
            "mt_chn_idx": 2,
            "poll": {
              "name": "",
              "num": 10,
              "keep_time": 5,
              "mode": 1,
              "members": [
                {
                  "name": "我是xxx",
                  "conf_e164": "000001",
                  "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
                  "account_type": 1
                }
              ]
            },
            "vmp": {
              "background_image": "",
              "name": "",
              "preferred_style": 1,
              "background_image_enable": 0,
              "layout": 5,
              "mode": 2,
              "except_self": 0,
              "voice_hint": 1,
              "show_mt_name": 1,
              "broadcast": 1,
              "mt_name_style": {
                "font_color": "#FFFFFF",
                "position": 1,
                "font_size": 1
              },
              "poll": {
                "name": "",
                "num": 10,
                "keep_time": 5,
                "mode": 1,
                "members": [
                  {
                    "name": "我是xxx",
                    "conf_e164": "000001",
                    "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
                    "account_type": 1
                  }
                ]
              },
              "members": [
                {
                  "name": "我是xxx",
                  "conf_e164": "000001",
                  "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
                  "member_type": 6,
                  "chn_idx": 0,
                  "account_type": 1,
                  "mt_chn_idx": 2,
                  "poll": {
                    "name": "",
                    "num": 10,
                    "keep_time": 5,
                    "mode": 1,
                    "members": [
                      {
                        "name": "我是xxx",
                        "conf_e164": "000001",
                        "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
                        "account_type": 1
                      }
                    ]
                  }
                }
              ]
            },
            "spilt": [
              {
                "name": "我是xxx",
                "conf_e164": "000001",
                "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
                "sub_chn_index": 2,
                "account_type": 1,
                "mt_chn_idx": 2
              }
            ]
          }
        ]
      }
    ]
  },
  "speaker": {
    "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
    "account_type": 1,
    "name": "我是xxx",
    "conf_e164": "000001"
  },
  "vmp": {
    "background_image": "",
    "name": "",
    "preferred_style": 1,
    "background_image_enable": 0,
    "layout": 5,
    "mode": 2,
    "except_self": 0,
    "voice_hint": 1,
    "show_mt_name": 1,
    "broadcast": 1,
    "mt_name_style": {
      "font_color": "#FFFFFF",
      "position": 1,
      "font_size": 1
    },
    "poll": {
      "name": "",
      "num": 10,
      "keep_time": 5,
      "mode": 1,
      "members": [
        {
          "name": "我是xxx",
          "conf_e164": "000001",
          "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
          "account_type": 1
        }
      ]
    },
    "members": [
      {
        "name": "我是xxx",
        "conf_e164": "000001",
        "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
        "member_type": 6,
        "chn_idx": 0,
        "account_type": 1,
        "mt_chn_idx": 2,
        "poll": {
          "name": "",
          "num": 10,
          "keep_time": 5,
          "mode": 1,
          "members": [
            {
              "name": "我是xxx",
              "conf_e164": "000001",
              "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
              "account_type": 1
            }
          ]
        }
      }
    ]
  },
  "creator": {
    "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
    "account_type": 1,
    "name": "我是xxx",
    "mobile": "13852521511",
    "telephone": "85181157"
  },
  "regular_room_static": {},
  "room_static": {},
  "mix": {
    "name": "",
    "mode": 1,
    "members": [
      {
        "name": "我是xxx",
        "conf_e164": "000001",
        "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
        "account_type": 1
      }
    ],
    "active_members": [
      {
        "name": "我是xxx",
        "conf_e164": "000001",
        "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
        "account_type": 1
      }
    ]
  },
  "meeting_formular": {
    "start_date": "",
    "week_days": "",
    "end_date": "",
    "repeat_type": 7,
    "frequency": 1
  },
  "poll": {
    "name": "",
    "num": 10,
    "keep_time": 5,
    "mode": 1,
    "members": [
      {
        "name": "我是xxx",
        "conf_e164": "000001",
        "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
        "account_type": 1
      }
    ]
  },
  "dcs": {
    "mode": 2
  },
  "responsible": {
    "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
    "account_type": 1,
    "name": "我是xxx",
    "conf_e164": "000001"
  },
  "recorder": {
    "vrs_id": "e2b3f132-1307-11ed-8c83-000c293c33e2",
    "live_password": "",
    "publish_mode": 0,
    "recorder_mode": 2,
    "anonymous": 0,
    "dual_stream": 0,
    "live_dual_stream": 0
  },
  "presenter": {
    "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
    "account_type": 1,
    "name": "我是xxx",
    "conf_e164": "000001"
  },
  "caller": {
    "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
    "account_type": 1,
    "name": "我是xxx",
    "conf_e164": "000001"
  },
  "chairman": {
    "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
    "account_type": 1,
    "name": "我是xxx"
  },
  "vips": [
    {
      "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
      "account_type": 1,
      "name": "我是xxx",
      "conf_e164": "000001"
    }
  ],
  "invite_members": [
    {
      "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
      "account_type": 1,
      "name": "我是xxx",
      "protocol": 255,
      "bitrate": 2048
    }
  ],
  "attendances": [
    {
      "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
      "account_type": 1,
      "name": "我是xxx",
      "protocol": 255,
      "bitrate": 2048
    }
  ],
  "often_mts": [
    {
      "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
      "account_type": 1,
      "name": "我是xxx",
      "conf_e164": "000001"
    }
  ],
  "rooms": [
    {
      "name": "",
      "region_name": "",
      "id": 1
    }
  ],
  "meeting_criteria_list": [
    {
      "region_name": "",
      "device_ids": "",
      "num": 0,
      "region_id": 0,
      "up_seating": 0,
      "down_seating": 0
    }
  ],
  "regular_rooms": [
    {
      "day": "",
      "meeting_rooms": [
        {
          "name": "",
          "id": 123
        }
      ]
    }
  ],
  "doubleflow_members": [
    {
      "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
      "account_type": 1,
      "name": "我是xxx",
      "conf_e164": "000001"
    }
  ],
  "audio_formats": [
    0
  ],
  "members": [
    {
      "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
      "account_type": 1,
      "name": "我是xxx",
      "participate_no": "",
      "is_participated": 0,
      "participated_type": 0,
      "protocol": 0
    }
  ],
  "video_formats": [
    {
      "bitrate": 2048,
      "resolution": 13,
      "format": 3,
      "frame": 30
    }
  ],
  "keep_calling_members": [
    {
      "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
      "account_type": 1,
      "name": "我是xxx",
      "conf_e164": "000001"
    }
  ]
}

名称 获取例会日期
URI /api/v1/mc/regular_meeting/{regular_meeting_moid}/date
方法 GET
说明
最低支持版本 6

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
regular_meeting_moid str 例会moid

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
{
  "total": 0,
  "success": 1,
  "data": [
    {
      "meeting_moid": "",
      "day": "2026-03-31T15:42:41+08:00"
    }
  ]
}

系统接口

名称 获取当前用户所在企业的预订期限
URI /api/v1/mc/deadline
方法 GET
说明
最低支持版本 5

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
{
  "success": 0,
  "data": {
    "mode": 0,
    "deadline": "2026-03-31T15:42:41+08:00"
  }
}

名称 获取会管API版本信息
URI /api/v1/mc/version
方法 GET
说明
最低支持版本 1

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
{
  "version": "6.0.0.0.0.20190603",
  "api_level": 1,
  "error_code": 0,
  "success": 0
}

名称 获取缺省模板信息
URI /api/v1/mc/default_template
方法 GET
说明
最低支持版本 10

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
{
  "success": 1,
  "data": {
    "create_by": "",
    "creator": "",
    "e164": "",
    "template_moid": "",
    "name": ""
  }
}

名称 设置缺省模板
URI /api/v1/mc/default_template
方法 POST
说明
最低支持版本 10

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
params str(object) 请求内容,以JSON形式发送,需进行UrlEncode,全量更新,需传所有参数
参数名称 数据类型 说明 是否必填 默认值
e164 str 模板e164号
template_moid str 模板moid
name str 模板名称
{
  "success": 1
}

名称 删除缺省模板
URI /api/v1/mc/default_template
方法 DELETE
说明
最低支持版本 10

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
_method 若浏览器不支持DELETE,则使用POST请求,并在请求参数中带上_method参数,并设置其值为DELETE,作为不支持DELETE请求的替代方案。
{
  "success": 1
}

虚拟会议室

名称 创建虚拟会议室
URI /api/v1/mc/virtual_meeting_rooms
方法 POST
说明 创建虚拟会议室,参数中非必填项默认值为0
最低支持版本 1

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
params str(object) 请求内容,以JSON形式发送,需进行UrlEncode,全量更新,需传所有参数
参数名称 数据类型 说明 是否必填 默认值
name str 虚拟会议室名称,
1.字符限制:
a.不支持输入特殊字符:% & * ^ ~ ' " " ? / \ < > | ` " $
b.且首字符和尾字符不支持输入,下划线(_) 减号(-) 小数点(.) @
(除首尾字符可以输入)
2.最大字符长度:64个字节
1
preoccupy_resource int 预占资源模式(创会时就预占音视频适配器),如会议类型为SFU则为纯转发
0-不预占模式;
1-预占模式;
2-SFU纯转发模式;
0
video_formats array 虚拟会议室主视频格式列表
    bitrate int 主流码率,默认为2048 2048
    resolution int 主流视频分辨率,默认为13
1-QCIF;
2-CIF;
3-4CIF;
12-720P;
13-1080P;
14-WCIF;
15-W4CIF;
16-4k;
13
    format int 主流视频格式,默认为3
1-MPEG;
2-H.261;
3-H.263;
4-H.264_HP;
5-H.264_BP;
6-H.265;
7-H.263+;
3
    frame int 主流帧率,默认为30 30
{
  "description": "",
  "id": "",
  "success": 0,
  "error_code": 0
}

名称 修改虚拟会议室
URI /api/v1/mc/virtual_meeting_rooms/{vmr_id}
方法 POST
说明 修改虚拟会议室,参数中非必填项默认值为0
最低支持版本 1

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
vmr_id str 虚拟会议室ID [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
params str(object) 请求内容,以JSON形式发送,需进行UrlEncode,全量更新,需传所有参数
参数名称 数据类型 说明 是否必填 默认值
name str 虚拟会议室名称,
1.字符限制:
a.不支持输入特殊字符:% & * ^ ~ ' " " ? / \ < > | ` " $
b.且首字符和尾字符不支持输入,下划线(_) 减号(-) 小数点(.) @
(除首尾字符可以输入)
2.最大字符长度:64个字节
1
preoccupy_resource int 预占资源模式(创会时就预占音视频适配器),如会议类型为SFU则为纯转发
0-不预占模式;
1-预占模式;
2-SFU纯转发模式;
0
video_formats array 虚拟会议室主视频格式列表
    bitrate int 主流码率,默认为2048 2048
    resolution int 主流视频分辨率,默认为13
1-QCIF;
2-CIF;
3-4CIF;
12-720P;
13-1080P;
14-WCIF;
15-W4CIF;
16-4k;
13
    format int 主流视频格式,默认为3
1-MPEG;
2-H.261;
3-H.263;
4-H.264_HP;
5-H.264_BP;
6-H.265;
7-H.263+;
3
    frame int 主流帧率,默认为30 30
{
  "description": "",
  "id": "",
  "success": 0,
  "error_code": 0
}

名称 删除虚拟会议室
URI /api/v1/mc/virtual_meeting_rooms/{vmr_id}
方法 DELETE
说明 删除虚拟会议室
最低支持版本 1

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
vmr_id str 会议室ID [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
_method 若浏览器不支持DELETE,则使用POST请求,并在请求参数中带上_method参数,并设置其值为DELETE,作为不支持DELETE请求的替代方案。
{
  "description": "",
  "id": "",
  "success": 0,
  "error_code": 0
}

名称 获取虚拟会议室列表
URI /api/v1/mc/virtual_meeting_rooms
方法 GET
说明 return virtual_meeting_rooms
最低支持版本 1

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
e164 str 会议164号,空值则查询所有记录
count int 每页条数,默认每页10条记录
order int 排序,默认升序
start int 起始记录序号,默认从第一条开始
{
  "total": 0,
  "success": 1,
  "virtual_meeting_rooms": [
    {
      "encrypted_key": "",
      "conf_name": "",
      "e164": "",
      "id": "",
      "name": "",
      "conf_type": 0,
      "bitrate": 0,
      "status": 0,
      "conf_protocol": 0,
      "exclusive": 0,
      "enable_rtc": 0,
      "resolution": 0,
      "max_join_mt": 192,
      "video_formats": [
        {
          "bitrate": 2048,
          "resolution": 13,
          "format": 3,
          "frame": 30
        }
      ],
      "exclusive_users": [
        {
          "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
          "account_type": 1,
          "name": "我是xxx"
        }
      ]
    }
  ]
}

名称 获取虚拟会议室详情
URI /api/v1/mc/virtual_meeting_rooms/{vmr_id}
方法 GET
说明 获取虚拟会议室详情
最低支持版本 1

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL路径参数说明

参数名称 数据类型 说明 是否必填 默认值
vmr_id str 虚拟会议室id [Path参数]

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
{
  "encrypted_key": "",
  "e164": "",
  "conf_name": "",
  "name": "1",
  "encrypted_type": 0,
  "conf_type": 0,
  "one_reforming": 0,
  "call_times": 2,
  "call_mode": 2,
  "call_interval": 20,
  "bitrate": 2048,
  "visible": 0,
  "status": 0,
  "conf_protocol": 0,
  "cascade_mode": 0,
  "cascade_return_para": 0,
  "dual_mode": 0,
  "success": 0,
  "cascade_return": 0,
  "cascade_upload": 0,
  "fec_mode": 0,
  "mute": 0,
  "multi_stream": 0,
  "mute_filter": 0,
  "watermark": 0,
  "voice_activity_detection": 0,
  "public_conf": 0,
  "exclusive": 0,
  "enable_rtc": 0,
  "anonymous_mt": 0,
  "dual_lock": 0,
  "vacinterval": 0,
  "preoccupy_resource": 0,
  "encrypted_auth": 0,
  "max_join_mt": 192,
  "vmp": {
    "mode": 2
  },
  "mix": {
    "mode": 1
  },
  "recorder": {
    "vrs_id": "e2b3f132-1307-11ed-8c83-000c293c33e2",
    "live_password": "",
    "publish_mode": 0,
    "recorder_mode": 2,
    "anonymous": 0,
    "dual_stream": 0,
    "live_dual_stream": 0
  },
  "visible_user_domains": [
    {
      "name": "",
      "moid": ""
    }
  ],
  "video_formats": [
    {
      "bitrate": 2048,
      "resolution": 13,
      "format": 3,
      "frame": 30
    }
  ],
  "exclusive_users": [
    {
      "account": "c69da1ef-5930-47e0-9a79-dfa083de0208",
      "account_type": 1,
      "name": "我是xxx"
    }
  ],
  "audio_formats": [
    0
  ]
}

名称 获取资源占用情况
URI /api/v1/mc/resources
方法 GET
说明 获取资源占用情况
最低支持版本 1

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
{
  "success": 0,
  "resource_type": 0,
  "resources": [
    {
      "name": "",
      "resolution": 0,
      "used": 0,
      "total": 0,
      "max_join_mt": 192
    }
  ]
}

名称 获取当前用户域可以使用的会议平台
URI /api/v1/mc/platforms
方法 GET
说明
最低支持版本 1

请求头说明

参数名称 数据类型 说明 是否必填 默认值
Content-Type str 参数类型,application/json
Accept str 接受类型,application/json
Cookie str SSO_COOKIE_KEY={cookie},cookie从(/api/v1/system/login)接口的返回头(Set-Cookie)或返回体(ssotoken)中获取
API-Level str 请求的API接口版本

URL查询参数说明

参数名称 数据类型 说明 是否必填 默认值
account_token str 软件权限token,通过oauth登录获取到的授权码
{
  "total": 0,
  "success": 1,
  "platforms": [
    {
      "name": "私有云",
      "platform_id": "",
      "type": 1
    }
  ]
}