Please note: All new registrants to the Panopto Community Forum must be approved by a forum moderator or admin. As such, if you navigate to a feature that is members-only, you may receive an error page if your registration has not yet been approved. We apologize for any inconvenience and are approving new members as quickly as possible.
How to display scheduled webcast sessions?
Chris Toth
Tyro
in API
Hi, I am retrieving a list of sessions like this:
response = await sessionMgr.GetSessionsListAsync(sessionManagementAuth, new ListSessionsRequest
{
Pagination = sessionPagination,
FolderId = panoptoFolderId,
SortIncreasing = true
}, null);
This displays sessions that are finished recording.
How can I show Webcast sessions that are scheduled to start sometime in the future?
Thanks!
Tagged:
0
Best Answer
-
Hiroshi Ohno Panopto Employee
Hi Chris,
You should be able to get those sessions by adding the following element into your ListSessionsRequest:
States = new[] { SessionState.Scheduled }
1
Answers
Thank you ! That worked.