powershell getSharePointSiteUsageDetail API的自定义报告期间

yptwkmov  于 2023-05-17  发布在  Shell
关注(0)|答案(1)|浏览(138)

对powershell和API很陌生,所以想问一下以下问题。我一直试图通过调用此MS Graph API“https://graph.microsoft.com/v1.0/reports/getSharePointSiteUsageDetail(period ='D30')”来获取一些站点使用详细信息。
通过调用它会给予我过去30天的使用数据。
我想知道的是,将有可能选择一个自定义的报告期间。让我们说2023年4月10日之前的最后30天。因此,从3月10日到4月10日的使用数据。
有什么我可以尝试的吗,建议?
谢谢
已尝试“https://graph.microsoft.com/v1.0/reports/getSharePointSiteUsageDetail(period ='D30',startDate ='2023 -03- 11',endDate ='2023 -04- 10')”,但不可能。

hjzp0vay

hjzp0vay1#

正如@user2250152所说,您只能指定期间或特定日期,而不能同时指定两者。

https://graph.microsoft.com/v1.0/reports/getSharePointSiteUsageDetail(period='D30')

或者

https://graph.microsoft.com/v1.0/reports/getSharePointSiteUsageDetail(startDate='2023-03-11',endDate='2023-04-10')

相关问题