Webhook meeting.ended triggered twice

I have a question related to meeting.ended webhook.
We are created the meeting by using request body bellow:

ZoomCreateMeetingRequest request = ZoomCreateMeetingRequest.builder()
.topic(topic)
.type(2)
.agenda(meetDescription)
.duration(40)
.startTime(startTime)
.timezone(“UTC”)
.settings(Settings.builder()
.joinBeforeHost(true)
.meetingAuthentication(false)
.jbhTime(5)
.privateMeeting(true)
.build())
.build();

We expect to receive the “meeting.ended” webhook event when the last participant leaves the meeting. However, in our case, this event was triggered once when the last participant left the meeting, and then again a few minutes later. Can you explain why the “meeting. Ended” webhook event is triggered twice for the same meeting? Maybe we should response something for this webhook, instead of status 200?

I found the problem at the specification:

Thank you all for supporting!
Sorry for bothering

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.