Just wanted to talk about a clarification for the type
parameter in List Meetings:
I’m a little confused re. the difference between scheduled
and upcoming
. If I understand correctly, scheduled
includes past meetings as well? (That’s what my tests show, but wanted to be sure).
Would be happy to submit a PR to the API docs if they’re on GitHub somewhere. What tests reveal can be summarized in this TypeScript type:
type MeetingListItemType =
// Meetings going on right now
'live' |
// All scheduled meetings, past, live or upcoming
'scheduled' |
// Only upcoming and live scheduled meetings
'upcoming';
PS: there’s an inconsistency between this type
parameter being a string, and it being a number (1, 2, 3, 8) in Create Meeting.