GET {{baseUrl}}/users/:userId/upcoming_meetings
List a Zoom user's upcoming meetings. For user-level apps, pass the Note
* This API includes the meetings that Zoom users schedule and the meetings they are invited to join.
* This API only includes upcoming meetings within the next 24 hours. Scopes: Rate Limit Label: me
value instead of the userId
parameter.meeting:read
,meeting:read:admin
MEDIUM
Body
PARAM
Key | Datatype | Required | Description |
HEADERS
Key | Datatype | Required | Description |
Accept
|
string |
RESPONSES
status OK
{
"total_records": "<integer>",
"meetings": [
{
"id": "<long>",
"topic": "<string>",
"type": 2,
"start_time": "<dateTime>",
"duration": "<integer>",
"timezone": "<string>",
"created_at": "<dateTime>",
"join_url": "<string>"
},
{
"id": "<long>",
"topic": "<string>",
"type": 1,
"start_time": "<dateTime>",
"duration": "<integer>",
"timezone": "<string>",
"created_at": "<dateTime>",
"join_url": "<string>"
}
]
} |
ENDPOINTS