Zoom delete "this and following" meetings webhook, edit meeting webhook

Hi below are my queries. I am trying these senarios from zoom calendar.
for recurring meeting, edit “this and following” , “edit all meetings” both gives same payload. how to identify “this and followingmeetings”?

sample webhook request:
edit this and following

{
“event”: “meeting.updated”,
“payload”: {
“account_id”: “BnXuymYeS12Qji_8u_k3-A”,
“operator”: “contactus@technoboost.in”,
“operator_id”: “eBT7DLd_SUqZHh1uo5cQ7g”,
“scope”: “all”,
“object”: {
“uuid”: “oU1s2H/9QE+QqQrf1R/xYA==”,
“id”: 84685024776,
“topic”: “2am-2am”
},
“old_object”: {
“uuid”: “oU1s2H/9QE+QqQrf1R/xYA==”,
“id”: 84685024776,
“topic”: “2am”
},
“time_stamp”: 1762798532922
},
“event_ts”: 1762798532922
}
=========eidt all
{
“event”: “meeting.updated”,
“payload”: {
“account_id”: “BnXuymYeS12Qji_8u_k3-A”,
“operator”: “contactus@technoboost.in”,
“operator_id”: “eBT7DLd_SUqZHh1uo5cQ7g”,
“scope”: “all”,
“object”: {
“uuid”: “oU1s2H/9QE+QqQrf1R/xYA==”,
“id”: 84685024776,
“topic”: “2am-2am-2am”
},
“old_object”: {
“uuid”: “oU1s2H/9QE+QqQrf1R/xYA==”,
“id”: 84685024776,
“topic”: “2am”
},
“time_stamp”: 1762798638219
},
“event_ts”: 1762798638219
}

========
for delete “this and following” meetings , we are not getting webhook paylaod. is it existing ? if so why we are not getting? is there somethign we need to enable?

pls clarify.

1 Like

You’re right that Zoom’s webhooks don’t currently distinguish between “edit all” and “edit this and following” in the payload, which can be confusing. As for the delete “this and following” case, Zoom doesn’t send a separate webhook for that action at the moment. It’s not something you can enable — it’s just not implemented yet in their API.

2 Likes

Thanks Leonardo. Can we please get any official document where these details are mentioned.

1 Like