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.