List recordings of an account
GET
/accounts/{accountId}/recordings
Cloud Recording
To access a password protected cloud recording, add an "access_token" parameter to the download URL and provide JWT as the value of the "access_token".
Scopes:
recording:read:admin
or account:read:admin
recording:read:admin
is used, the Account ID of the Account must be provided in the accountId
path parameter to list recordings that belong to the Account. This scope only works for sub accounts.account:read:admin
and the value of accountId
should be me
.Rate Limit Label:
Medium
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://api.zoom.us/v2/accounts//recordings'
响应示例响应示例
200 - response
{
"from": "2019-08-19",
"meetings": [
{
"account_id": "lq8QK_AAAAAAAAA",
"duration": 2,
"host_email": "thehostemail@somemail.com",
"host_id": "uLoABCDEF_qQGIsQ",
"id": 101010101,
"recording_count": 3,
"recording_files": [
{
"download_url": "https://zoom.us/recording/download/abcdEFgkkkkk",
"file_size": 26966,
"file_type": "M4A",
"id": "2f6bbbb-0fd7-4691-af13-aaaaaa",
"meeting_id": "i9zq0MR8S/abcdef==",
"play_url": "https://zoomdev.us/recording/play/abcdEFgkkkkk",
"recording_end": "2019-08-20T00:53:16Z",
"recording_start": "2019-08-20T00:51:54Z",
"recording_type": "audio_only",
"status": "completed"
},
{
"download_url": "https://zoom.us/recording/download/JolGd4kUpBEo44Q31BVEXrGeCdbT4-MOAAAAA",
"file_size": 37,
"file_type": "CHAT",
"id": "39362666-0fd7-4691-af13-aaaaaa",
"meeting_id": "i9zq0MR8S/abcdef==",
"play_url": "https://zoom.us/recording/play/UpBEo44Q31BVEXrGeCdbT4-MOAAAAAAA",
"recording_end": "2019-08-20T00:53:16Z",
"recording_start": "2019-08-20T00:51:54Z",
"recording_type": "chat_file",
"status": "completed"
},
{
"download_url": "https://zoom.us/recording/download/5Y2YnU-56ZY4lEA5AAAABBBBBCCCCCDDDDD",
"file_size": 101679,
"file_type": "MP4",
"id": "K809nk-014djkfsgf-00a98c13ec783",
"meeting_id": "i9zq0MR8S/abcdef==",
"play_url": "https://zoom.us/recording/play/5Y2YnU-56ZY4lEA5AAAABBBBBCCCCCDDDDD",
"recording_end": "2019-08-20T00:53:16Z",
"recording_start": "2019-08-20T00:51:54Z",
"recording_type": "shared_screen_with_speaker_view",
"status": "completed"
}
],
"share_url": "https://zoom.us/recording/share/SBDDBJKsbjdAAAAA",
"start_time": "2019-08-20T00:52:13Z",
"timezone": "America/Los_Angeles",
"topic": "MyTestMeeting",
"total_size": 128682,
"type": 2,
"uuid": "i9zq0MR8S/abcdef=="
}
],
"next_page_token": "",
"page_size": 30,
"to": "2019-08-20"
}
请求参数
Path 参数
accountId
string
必需
Query 参数
page_size
integer
可选
<= 300
默认值:
30
next_page_token
string
可选
from
string <date-time>
可选
to
string <date-time>
可选
返回响应
修改于 2024-04-24 09:06:48