获取企业下所有的布局模板列表。
请求方式: GET(HTTPS)
请求地址: https://qyapi.weixin.qq.com/cgi-bin/meeting/layout/list_template?access_token=ACCESS_TOKEN
参数说明:
参数 | 必须 | 类型 | 说明 |
---|---|---|---|
access_token | 是 | string | 调用接口凭证。获取方法查看“获取access_token” |
返回结果
{
"errcode": 0,
"errmsg": "ok",
"layout_template_list": [{
"layout_template_id": "1",
"thumbnail_url": "https://xxx.1.d/1.png",
"picture_url": "https://xxx.yyy.mmm/sss.jpg",
"render_rule": "{\"layout_width\":960,\"layout_height\":540,\"layout_items\":[{\"seat_id\":1,\"stream_size\":1,\"pos\":{\"left\":\"0.00000000\",\"top\":\"0.00000000\"},\"size\":{\"width\":\"1.00000000\",\"height\":\"1.00000000\"},\"margin\":{\"top\":\"0.0\",\"left\":\"0.0\",\"bottom\":\"0.0\",\"right\":\"0.0\"}}]}"
}]
}
参数说明:
参数 | 类型 | 说明 |
---|---|---|
errcode | int32 | 返回码 |
errmsg | string | 对返回码的文本描述内容 |
layout_template_list | object[] | 布局模板对象列表。详见LayoutTemplate |
布局模板对象
参数 | 类型 | 说明 |
---|---|---|
layout_template_id | string | 布局模板 ID。 |
thumbnail_url | string | 缩略图 URL。 |
picture_url | string | 布局图 URL(布局图中包含宫格 ID,该 ID 用于确定布局宫格和成员座次的映射关系,设置和修改会议布局时需要当做入参传递)。 |
render_rule | string | 渲染规则(提供成员个人渲染布局图片的规则说明)。 |