Steps to reproduce:
- Request URL: GET https://api.zoom.us/v2/past_meetings/edited
Headers: Authorization: Bearer Token - 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”
} - 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
}