list_meetings
Retrieve and organize Zoom meetings by type—upcoming, scheduled, or previous—using the Zoom API. Simplify meeting management for better scheduling and tracking.
Instructions
List scheduled meetings
Input Schema
Name | Required | Description | Default |
---|---|---|---|
type | No | The type of meeting. Choose from upcoming, scheduled or previous_meetings. upcoming - All upcoming meetings; scheduled - All valid previous (unexpired) meetings and upcoming scheduled meetings; previous_meetings - All the previous meetings; | upcoming |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"type": {
"default": "upcoming",
"description": "The type of meeting. Choose from upcoming, scheduled or previous_meetings. upcoming - All upcoming meetings; scheduled - All valid previous (unexpired) meetings and upcoming scheduled meetings; previous_meetings - All the previous meetings;",
"type": "string"
}
},
"type": "object"
}