API: listMeetings returns deleted meetings
See original GitHub issuerelated to #895
ATM listMeetings returns meetings even if they have been deleted. Not too bad, but where’s no way to check if the meeting is active other than calling getMeeting, which will return an error (NotFound, that’s fine). Calls to listMeetings thereafter will correctly return the list w/o the previously requested (and deleted) meeting.
BTW, doc says listMeetings should only return active meetings:
/**
* Lists up to 100 active Amazon Chime SDK meetings. (...)
*/
listMeetings(callback?: (err: AWSError, data: Chime.Types.ListMeetingsResponse) => void): Request<Chime.Types.ListMeetingsResponse, AWSError>;
(Sorry for posting two issues right from the start. Let me say that coming from Zoom API / Webclient I really LOVE Chime SDK)
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
DeleteMeeting - Amazon Chime - AWS Documentation
Deletes the specified Amazon Chime SDK meeting. The operation deletes all attendees, disconnects all clients, and prevents new clients from joining the ...
Read more >Get a list of deleted meetings - API and Webhooks
Is there a REST API call that I can use to obtain a list of meetings that have been deleted? ... Never mind....
Read more >Meetings - Office API Reference - RingCentral Developers
Get Scheduled Meetings ... Returns a list of user meetings scheduled for the future (meetings of 'Instant' type are not included). App Scope....
Read more >Delete a Meeting | Webex for Developers
Code Status Description
200 OK Successful request with body content.
202 Accepted The request has been accepted for processing.
204 No Content Successful request without body...
Read more >List meetings with Zoom Admin API on Invitee Cancelled (Instant ...
List meetings with Zoom Admin API on Invitee Cancelled (Instant) from Calendly API. Setup the Calendly API trigger to run a workflow which...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Ok, makes sense. We’re working on a fix.
@asnyatkov just to be sure: we have a simple hotfix for this issue (after deletion, get meeting, catch NotFound error, call listMeetings). I just thought it makes sense to share this issue so maybe you can look into it for everybody else