- 快速入门
- 开发指南
- API
- 认证
- 首页
- 会话控制
- 虚拟会议室
- 历史会议管理
- 会议管理
- 组织架构管理
- 企业设置
- 员工信息
- 资产设备信息
- 会议模版管理
- 数据统计
- 系统报告
- 管理员日志
- 终端分组管理
- 录制文件管理
- 运维工具
- 呼叫
- 端口监听
- 服务区管理
- 服务器管理
- 终端管理
- 数据平台
更新会话自定义布局
PUT
/rsc/api/v2/user/sessions/{sessionId}/layouts/{layoutId}
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Path 参数
sessionId
string
会话 id
layoutId
string
布局 id
Body 参数application/json
content
string
布局内容
apply
boolean
是否应用
示例
{
"content": "string",
"apply": true
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request PUT '/rsc/api/v2/user/sessions//layouts/' \
--header 'Content-Type: application/json' \
--data-raw '{
"content": "string",
"apply": true
}'
返回响应
🟢200成功
application/json
Body
端点布局响应
id
string | null
id 主键
apply
boolean | null
是否应用中
type
enum<integer>
广播类型
枚举值:
-1012
content
string | null
布局内容
index
integer | null
顺序
createdTime
string | null
创建时间
updatedTime
string | null
更新时间
applyTime
string | null
应用时间
示例
{
"id": "",
"apply": false,
"type": 0,
"content": "",
"index": 0,
"createdTime": "",
"updatedTime": "",
"applyTime": ""
}