List meetings
GET
/users/{userId}/meetings
Meetings
Scopes:
meeting:read:admin
meeting:read
Medium
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://api.zoom.us/v2/users//meetings'
响应示例响应示例
200 - response
{
"meetings": [
{
"created_at": "2019-08-16T01:13:12Z",
"duration": 30,
"host_id": "abckjdfhsdkjf",
"id": 11111,
"join_url": "https://zoom.us/j/11111",
"start_time": "2019-08-16T02:00:00Z",
"timezone": "America/Los_Angeles",
"topic": "Zoom Meeting",
"type": 2,
"uuid": "mlghmfghlBBB"
},
{
"agenda": "RegistrationDeniedTest",
"created_at": "2019-08-16T18:30:46Z",
"duration": 60,
"host_id": "abckjdfhsdkjf",
"id": 2222,
"join_url": "https://zoom.us/j/2222",
"start_time": "2019-08-16T19:00:00Z",
"timezone": "America/Los_Angeles",
"topic": "TestMeeting",
"type": 2,
"uuid": "J8H8eavweUcd321=="
},
{
"created_at": "2019-08-16T21:15:56Z",
"duration": 60,
"host_id": "abckjdfhsdkjf",
"id": 33333,
"join_url": "https://zoom.us/j/33333",
"start_time": "2019-08-16T22:00:00Z",
"timezone": "America/Los_Angeles",
"topic": "My Meeting",
"type": 2,
"uuid": "SGVTAcfSfCbbbb"
},
{
"created_at": "2019-08-29T17:32:33Z",
"duration": 60,
"host_id": "abckjdfhsdkjf",
"id": 44444,
"join_url": "https://zoom.us/j/4444",
"start_time": "2019-08-29T18:00:00Z",
"timezone": "America/Los_Angeles",
"topic": "MyTestPollMeeting",
"type": 2,
"uuid": "64123avdfsMVA=="
}
],
"page_count": 1,
"page_number": 1,
"page_size": 30,
"total_records": 4
}
请求参数
Path 参数
userId
string
必需
me
as the value for userId.Query 参数
type
enum<string>
可选
scheduled
- This includes all valid past meetings (unexpired), live meetings and upcoming scheduled meetings. It is equivalent to the combined list of "Previous Meetings" and "Upcoming Meetings" displayed in the user's Meetings page on the Zoom Web Portal.live
- All the ongoing meetings.upcoming
- All upcoming meetings including live meetings.枚举值:
scheduledliveupcoming
默认值:
live
page_size
integer
可选
<= 300
默认值:
30
next_page_token
string
可选
page_number
string
可选
返回响应
修改于 2024-04-24 09:06:48