Errors in Zoom API Meeting + Registrant Responses

API Endpoint(s) and/or Zoom API Event(s)

  • get/users/{userId}/meetings

  • get/meetings/{meetingId}/registrants

Description
When hitting the above endpoints, it looks like we’re getting some incorrect results that don’t match what we’re seeing in the UI.

When listing out meetings for a user, the api says that one of our meetings has a start time of 2026-12-19T07:59:00Z, when the start time in the UI shows 02/17/2026 04:01:06 PM

When getting registrants for a particular meeting, the api is returning 0 when according to the UI, there are 43.

Error?
None

How To Reproduce

requests.get(
        f"https://api.zoom.us/v2/users/{user_id}/meetings",
        headers={"Authorization": f"Bearer {token}"},
        params={"show_previous_occurrences": "true"},
    )
requests.get(
    "https://api.zoom.us/v2/meetings/{meeting_id}/registrants",
    headers={"Authorization": f"Bearer {token}"},
    params={},
)