Start_time mismatch in meeting.ended webhook event and response from https://api.zoom.us/v2/past_meetings/{meetingId} (reproduced randomly)

Steps to reproduce:

  1. Request URL: GET https://api.zoom.us/v2/past_meetings/edited
    Headers: Authorization: Bearer Token
  2. Response contains “start_time”: “2022-11-30T13:12:12Z”
    {
    “uuid”: MEETING_UUID,
    “id”: 83452976716,
    “host_id”: HOST_ID,
    “type”: 1,
    “topic”: "Nick ",
    “user_name”: “Nick”,
    “user_email”: “edited”,
    “start_time”: “2022-11-30T13:12:12Z”,
    “end_time”: “2022-11-30T13:14:15Z”,
    “duration”: 3,
    “total_minutes”: 3,
    “participants_count”: 2,
    “dept”: “”,
    “source”: “Zoom”
    }
  3. But in incoming meeting.ended webhook event start_time differs:
    {
    “event”: “meeting.ended”,
    “payload”: {
    “account_id”: ACCOUNT_ID,
    “object”: {
    “duration”: 0,
    “start_time”: “2022-11-30T13:12:13Z”,
    “timezone”: “”,
    “end_time”: “2022-11-30T13:14:15Z”,
    “topic”: “Nick Skydan’s Zoom Meeting”,
    “id”: “”,
    “type”: 1,
    “uuid”: MEETING_UUID,
    “host_id”: HOST_ID
    }
    },
    “event_ts”: 1669814055459
    }

HI @skydanmykola1987
Thanks for reaching out to the Zoom Developer Forum, I am happy to help here!
Is this issue still happening on your end?
I can see that the difference is only 1 second, is it always one second or it varies?

Cheers,
Elisa

Hi, @elisa.zoom
Thanks for your reply!
This issue happens intermittently, the difference is one to two seconds.