有奖:语音产品征文挑战赛火热进行中> HOT

接口描述

描述:根据会议录制 ID 查询共享等配置,支持查询共享权限、共享密码、共享有效期等信息,仅录制管理者、企业超级管理员或有企业录制管理权限的用户可以查询。
请求方式:GET
鉴权方式:JWT,OAuth2.0
权限点:查看或管理会议录制
接口请求域名:
https://api.meeting.qq.com/v1/records/settings/{meeting_record_id}

输入参数

参数名称
是否必须
参数描述
meeting_record_id
会议录制 ID。
operator_id
操作人 ID。
仅录制管理者、企业超级管理员或有企业录制管理权限的用户可以查询。
operator_id_type
操作人 ID 类型:
1:userid
2:open_id

输出参数

参数名称
参数类型
参数描述
meeting_id
String
会议 ID。
meeting_record_name
String
录制名称。
sharing_config
SharingConfig 对象
共享配置对象。

SharingConfig 对象

参数名称
参数类型
参数描述
enable_sharing
Boolean
共享链接开关:
true:开启
false:未开启
share_scope
Integer
访问范围:
0:所有人
1:同企业
enable_approve
Boolean
是否需要审批:
true:需要
false:不需要
enable_password
Boolean
是否开启密码:
true:开启
false:未开启
password
String
密码,开启密码时会返回。
enable_sharing_expire
Boolean
是否开启共享链接有效期:
true:开启
false:未开启
sharing_expire
Integer
共享链接有效期(毫秒级时间戳),开启共享链接有效期时会返回。
allow_download
Boolean
是否允许下载:
true:允许
false:不允许
allow_view_transcripts
Boolean
是否允许查看录制转写:
true:允许
false:不允许

示例

输入示例

GET https://api.meeting.qq.com/v1/records/settings/123456789?operator_id=user1&&operator_id_type=1

输出示例

{
"meeting_id":"1111122223333",
"meeting_record_name":"测试录制",
"sharing_config":{
"enable_sharing":true,
"share_scope":0,
"enable_approve":false,
"enable_password":true,
"password":"ABCD",
"enable_sharing_expire":false,
"allow_download":true,
"allow_view_transcripts":true
}
}