获取单个云录制的详情信息,包括录制文件和会议纪要,并可获取播放地址和下载地址
请求方式: POST(HTTPS)
请求地址: https://qyapi.weixin.qq.com/cgi-bin/meeting/record/get_file?access_token=ACCESS_TOKEN
请求包体:
{
"record_file_id": "record1",
"meetingid":"JIGENIGE"
}
参数说明:
| 参数 | 必须 | 类型 | 说明 |
|---|---|---|---|
| access_token | 是 | string | 调用接口凭证。获取方法查看“获取access_token” |
| record_file_id | 是 | string | 会议录制ID |
| meetingid | 是 | string | 会议ID |
权限说明
返回结果:
{
"errcode": 0,
"errmsg": "ok",
"record_file_id": "FIELID",
"meetingid": "MEETINGID",
"meeting_code": "CODE",
"view_address": "https://view.url",
"download_address": "https://download.url",
"download_address_file_type": "mp4",
"audio_address": "url",
"audio_address_file_type": "m4a",
"meeting_summary": {
"download_address": "https://download.url",
"file_type": "pdf"
},
"ai_meeting_transcripts": [
{
"download_address": "http://1.2.3",
"file_type": "txt"
}
],
"record_name": "录制1",
"start_time": "1743131564453",
"end_time": "1743131613969",
"meeting_record_name": "有录制的会议"
}
参数说明:
| 参数 | 类型 | 说明 |
|---|---|---|
| errcode | int32 | 返回码 |
| errmsg | string | 对返回码的文本描述内容 |
| meetingid | string | 会议ID |
| meeting_code | string | 入会码 |
| record_file_id | string | 录制文件 ID。 |
| view_address | string | 播放地址。 |
| download_address | string | 下载地址,默认6小时过期 |
| download_address_file_type | string | 下载视频文件格式,例如:mp4。 |
| audio_address | string | 音频下载地址,默认6小时过期 |
| audio_address_file_type | string | 下载音频文件格式,例如:m4a。 |
| record_name | string | 录制文件名 |
| start_time | int64 | 录制开始时间 |
| end_time | int64 | 录制结束时间 |
| meeting_record_name | string | 会议录制名 |
| meeting_summary | object[] | 会议纪要文件列表,详见Summary |
| ai_meeting_transcripts | object[] | 录制转写文件(智能优化版)列表,详见AITranscript |
Summary说明
| 参数 | 类型 | 说明 |
|---|---|---|
| download_address | string | 下载文件地址,链接有效期为一个小时。 |
| file_type | string | 下载文件类型,例如:txt、pdf、docx。 |
AITranscript说明
| 参数 | 类型 | 说明 |
|---|---|---|
| download_address | string | 下载文件地址,链接有效期为一个小时。 |
| file_type | string | 下载文件类型,例如:txt、pdf、docx。 |
