Welcome to the Panopto Community

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.
Options

How to display scheduled webcast sessions?

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:

Best Answer

  • Options
    Hiroshi OhnoHiroshi Ohno Panopto Employee
    Answer ✓

    Hi Chris,

    You should be able to get those sessions by adding the following element into your ListSessionsRequest:

    States = new[] { SessionState.Scheduled }

Answers

Sign In or Register to comment.