> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Meetings

Use this API to list a user's (meeting host) scheduled meetings. For user-level apps, pass [the `me` value](https://marketplace.zoom.us/docs/api-reference/using-zoom-apis#mekeyword) instead of the `userId` parameter.

**Note:**

* This API **only** supports scheduled meetings. This API does not return information about instant meetings.
* This API only returns a user's [unexpired meetings](https://support.zoom.us/hc/en-us/articles/201362373-Meeting-ID#h_c73f9b08-c1c0-4a1a-b538-e01ebb98e844).

**Scopes:** `meeting:read:admin`, `meeting:read`
**[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Medium`.

<Note>
  External Documentation

  To learn more, visit the [Zoom documentation](https://developers.zoom.us/docs/api/meetings/#tag/meetings/get/users/\{userId}/meetings).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                                                                                                                                                                                                                                                                                                                                     |
  | ---------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Page Size        | The number of records returned within a single API call.                                                                                                                                                                                                                                                                                                                                        |
  | Return All Pages | Automatically fetch all resources, page by page.                                                                                                                                                                                                                                                                                                                                                |
  | Type             | The type of meeting: <br />\* `scheduled` — All valid previous (unexpired) meetings, live meetings, and upcoming scheduled meetings. <br />\* `live` — All the ongoing meetings. <br />\* `upcoming` — All upcoming meetings, including live meetings. <br />\* `upcoming_meetings` — All upcoming meetings, including live meetings. <br />\* `previous_meetings` — All the previous meetings. |
  | User ID          | The user ID or email address of the user. For user-level apps, pass the `me` value.                                                                                                                                                                                                                                                                                                             |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter       | Description                                                                                                                                                                                                                    |
  | --------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | Next Page Token | The next page token is used to paginate through large result sets. A next page token will be returned whenever the set of available results exceeds the current page size. The expiration period for this token is 15 minutes. |
  | Page Number     | The page number of the current page in the returned records.                                                                                                                                                                   |
</div>

## Example Output

```json theme={"dark"}
{
	"page_size": 32,
	"total_records": 0,
	"next_page_token": "<string>",
	"meetings": []
}
```

## Workflow Library Example

[List Meetings with Zoom and Send Results Via Email](https://library.blinkops.com/workflows/list-meetings-with-zoom-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/list-meetings-with-zoom-and-send-results-via-email/canvas" />
</div>
