Logo
Zoom Public API Documentation

List upcoming meetings

GET {{baseUrl}}/users/:userId/upcoming_meetings

List a Zoom user's upcoming meetings. For user-level apps, pass the me value instead of the userId parameter.

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: meeting:read,meeting:read:admin

Rate Limit Label: 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>" } ] }



Curl
curl -X GET 'https://api.zoom.us/v2/users/:userId/upcoming_meetings' -H 'Accept: application/json'

ENDPOINTS