设置会议室配置
POST
https://open.feishu.cn/open-apis/vc/v1/scope_config
错误码
HTTP状态码 | 错误码 | 描述 | 排查建议 |
---|---|---|---|
500 | 121001 | internal error | 服务器内部错误,如果重试无效可联系管理员 |
400 | 121002 | not support | 暂不支持该功能 |
400 | 121003 | param error | 参数错误,检查参数的取值范围(请按照上面字段说明自查) |
404 | 121004 | data not exist | 请求的数据不存在 |
404 | 121005 | no permission | 无权限进行该操作,建议检查token类型、操作者身份以及资源的归属(可能使用了会议室id却将scope_type填写成了1) |
404 | 121006 | data conflict | 通常由于CAS机制导致,可在更新数据后重试 |
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://open.feishu.cn/open-apis/vc/v1/scope_config' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
"scope_type": 1,
"scope_id": "omm_608d34d82d531b27fa993902d350a307",
"scope_config": {
"room_background": "https://lf1-ttcdn-tos.pstatp.com/obj/xxx",
"display_background": "https://lf1-ttcdn-tos.pstatp.com/obj/xxx",
"digital_signage": {
"enable": true,
"mute": true,
"start_display": 3,
"stop_display": 3,
"materials": [
{
"id": "7847784676276",
"name": "name",
"material_type": 0,
"url": "url",
"duration": 15,
"cover": "url",
"md5": "md5",
"vid": "vid",
"size": "100"
}
]
},
"room_box_digital_signage": {
"enable": true,
"mute": true,
"start_display": 3,
"stop_display": 3,
"materials": [
{
"id": "7847784676276",
"name": "name",
"material_type": 0,
"url": "url",
"duration": 15,
"cover": "url",
"md5": "md5",
"vid": "vid",
"size": "100"
}
]
},
"room_status": {
"status": true,
"schedule_status": true,
"disable_start_time": "1652356050",
"disable_end_time": "1652442450",
"disable_reason": "测试占用",
"contact_ids": [
"ou_3ec3f6a28a0d08c45d895276e8e5e19b"
],
"disable_notice": true,
"resume_notice": true
}
}
}'
响应示例响应示例
{
"code": 0,
"msg": "success",
"data": {}
}
请求参数
Query 参数
user_id_type
string
用户 ID 类型
示例值:
open_id
Header 参数
Authorization
string
必需
默认值:
Bearer {{access_token}}
Content-Type
string
必需
默认值:
application/json; charset=utf-8
Body 参数application/json
返回响应
修改于 2023-01-28 07:43:21