GET {{baseUrl}}/report/users/:userId/meetings?from=<date>&to=<date>&page_size=30&next_page_token=<string>&type=past
Retrieve report on past meetings and webinars for a specified time period. The time range for the report is limited to a month and the month must fall within the past six months. Meetings and webinars are returned only if they have two or more unique participants. Prerequisites: Scopes: Rate Limit Label:
report:read:admin
Heavy
Body
PARAM
Key | Datatype | Required | Description |
from
|
string | (Required) Start date in 'yyyy-mm-dd' format. The date range defined by the "from" and "to" parameters should only be one month as the report includes only one month worth of data at once. | |
to
|
string | (Required) End date. | |
page_size
|
number | The number of records returned within a single API call. | |
next_page_token
|
string | Use the next page token to paginate through large result sets. A next page token is returned whenever the set of available results exceeds the current page size. This token's expiration period is 15 minutes. | |
type
|
string | The meeting type to query for: * `past` — All past meetings. * `pastOne` — A single past user meeting. * `pastJoined` — All past meetings the account's users hosted or joined. |
HEADERS
Key | Datatype | Required | Description |
Accept
|
string | Curl curl -X GET 'https://api.zoom.us/v2/report/users/:userId/meetings?from=<date>&to=<date>&page_size=30&next_page_token=<string>&type=past?from=<date>&to=<date>&page_size=30&next_page_token=<string>&type=past' -H 'Accept: application/json' ENDPOINTS |