List all recordings
GET
/users/{userId}/recordings
Cloud Recording
To access a user's password protected cloud recording, add an "access_token" parameter to the download URL and provide either the JWT or the user's OAuth access token as the value of the "access_token" parameter.
recording:read:admin
recording:read
Medium
Prerequisites:
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://api.zoom.us/v2/users//recordings'
响应示例响应示例
200 - response
{
"from": "2019-08-15",
"meetings": [
{
"account_id": "AbcjxkfhdEEE",
"duration": 1,
"host_id": "z8dfkgABBBBBBBfp8uQ",
"id": 1000000000000,
"recording_count": 1,
"recording_files": [
{
"download_url": "https://api.zoom.us/recording/download/pfA2AvvvvvAnAzOibbbbELxl",
"file_size": 10098,
"file_type": "M4A",
"id": "589ABBBBB-8718e",
"meeting_id": "gkABCDEnCkPuA==",
"play_url": "https://api.zoom.us/recording/play/pfA2AvvvvvAnAzOibbbbELxl",
"recording_end": "2019-08-29T21:55:24Z",
"recording_start": "2019-08-29T21:54:55Z",
"recording_type": "audio_only",
"status": "completed"
},
{
"download_url": "https://api.zoom.us/recording/download/cc33ekldfdjfhf3-aaaaa",
"file_type": "TIMELINE",
"meeting_id": "gkABCDEnCkPuA==",
"recording_end": "2019-08-29T21:55:24Z",
"recording_start": "2019-08-29T21:54:55Z"
},
{
"download_url": "https://api.zoom.us/recording/download/abcdkjfhdhfdhfj",
"file_size": 37285,
"file_type": "MP4",
"id": "96119b=kdfhf791",
"meeting_id": "gkABCDEnCkPuA==",
"play_url": "https://api.zoom.us/recording/play/abcdkjfhdhfdhfj",
"recording_end": "2019-08-29T21:55:24Z",
"recording_start": "2019-08-29T21:54:55Z",
"recording_type": "shared_screen_with_speaker_view",
"status": "completed"
}
],
"share_url": "https://api.zoom.us/recording/share/IABCDJDKDJEEEEEk_GwfdggdgkTziMw",
"start_time": "2019-08-29T21:54:49Z",
"timezone": "America/Los_Angeles",
"topic": "MyTestPollMeeting",
"total_size": 47383,
"type": 2,
"uuid": "gkABCDEnCkPuA=="
}
],
"next_page_token": "",
"page_count": 1,
"page_size": 30,
"to": "2019-09-15",
"total_records": 1
}
请求参数
Path 参数
userId
string
必需
me
as the value for userId.Query 参数
page_size
integer
可选
<= 300
默认值:
30
next_page_token
string
可选
mc
string
可选
默认值:
false
trash
boolean
可选
true
: List recordings from trash.false
: Do not list recordings from the trash.The default value is
false
. If you set it to true
, you can use the trash_type
property to indicate the type of Cloud recording that you need to retrieve.默认值:
false
from
string <date>
可选
to
string <date>
可选
trash_type
string
可选
meeting_recordings
: List all meeting recordings from the trash.recording_file
: List all individual recording files from the trash.默认值:
meeting_recordings
返回响应
修改于 2024-04-24 09:06:48