获取会议详情
GET
/open-apis/vc/v1/meetings/{meeting_id}
自建应用商店应用
只能获取归属于自己的会议,支持查询最近90天内的会议
错误码
HTTP状态码 | 错误码 | 描述 | 排查建议 |
---|---|---|---|
500 | 121001 | internal error | 服务器内部错误,如果重试无效可联系管理员 |
400 | 121002 | not support | 暂不支持该功能 |
400 | 121003 | param error | 参数错误,检查参数的取值范围(请按照上面字段说明自查) |
404 | 121004 | data not exist | 请求的数据不存在 |
403 | 121005 | no permission | 无权限进行该操作,建议检查token类型、操作者身份以及资源的归属 |
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://open.feishu.cn/open-apis/vc/v1/meetings/6911188411932033028?with_participants=false&with_meeting_ability=false&user_id_type=open_id' \
--header 'Authorization;'
响应示例响应示例
{
"code": 0,
"msg": "success",
"data": {
"meeting": {
"id": "6911188411934433028",
"topic": "my meeting",
"url": "https://vc.feishu.cn/j/337736498",
"meeting_no": "123456789",
"create_time": "1608885566",
"start_time": "1608883322",
"end_time": "1608888867",
"host_user": {
"id": "ou_3ec3f6a28a0d08c45d895276e8e5e19b",
"user_type": 1
},
"status": 2,
"participant_count": "10",
"participant_count_accumulated": "10",
"participants": [
{
"id": "ou_3ec3f6a28a0d08c45d895276e8e5e19b",
"first_join_time": "1624438144",
"final_leave_time": "1624438144",
"in_meeting_duration": "123",
"user_type": 1,
"is_host": true,
"is_cohost": false,
"is_external": false,
"status": 2
}
],
"ability": {
"use_video": true,
"use_audio": true,
"use_share_screen": true,
"use_follow_screen": true,
"use_recording": true,
"use_pstn": true
}
}
}
}
请求参数
Path 参数
meeting_id
必需
示例值:
6911188411932033028
Query 参数
with_participants
必需
示例值:
false
with_meeting_ability
必需
示例值:
false
user_id_type
必需
示例值:
open_id
Header 参数
Authorization
string
必需
默认值:
Bearer {{access_token}}
返回响应
修改于 2023-01-28 06:00:49