cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
270
Views
0
Helpful
3
Replies

Meeting Deletion Inquiry

rnawar
Level 1
Level 1

Is there a way to utilize the APIs to delete a meeting given its number (not meetingID)?


3 Replies 3

markcummins713
Level 1
Level 1

A "Meeting Deletion Inquiry" refers to an investigation or request to understand the deletion of a scheduled meeting. Inquiries can arise from accidental deletions, security concerns, data recovery needs, or audit/compliance requirements. To address such inquiries, graphic designer one may need to review logs, policies, and circumstances, and potentially recover data or reschedule the meeting if necessary. Procedures for handling these inquiries may vary by organization and the tools used for meeting management.

You can create an org level webhook with the 'meetings' resource for events of created, updated, deleted, started and ended. These webhooks would trigger if any host in your org performed one of those actions so you could use the webhook data to track if a meeting was deleted for example and then determine if it needs to be recreated. The different resources and events that are supported by webhooks can be found on https://developer.webex.com/docs/webhooks under the Resources, Events, & Filters section.

dstaudt
Cisco Employee
Cisco Employee

I believe you would need to first look up the meeting's unique meetingId - you can use /v1/meetings/list-meetings specifying the meeting number.
With the meetingId in hand, you can use /v1/meetings/delete-a-meeting as expected.