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.
Answers
Hello Liu,
You may try out the GetReport or the GetFolderSummaryUsage methods to request the information you need. Please let me know if I can help in any other way.
Regards,
Aish
GetFolderSummaryUsage does not give as much detail like the report generated usage as per the SOAP API.jpg attached. I need the all session usage by users under a folder.
Using GetReport requires creating a schedule recurring report via UI before I can use GetReport to download by Report ID. Is there a way to pre-determine the ReportID so that I can get the latest daily generated report?
Hi Liu,
You could create recurring reports that you need using
CreateRecurringReport
and then useGetRecurringReports
and filter result byIsAvailable
to get the data you need. It would return a recurring definition where you can access the report id, and then just useGetReport
// This returns collection which contains ReportId
var availableReports = recurringDefinition.Reports.Where(r => r.IsAvailable);
I hope this helps.
Thanks,
Adis