Skip to content

Latest commit

 

History

History
22 lines (12 loc) · 715 Bytes

File metadata and controls

22 lines (12 loc) · 715 Bytes

Example 1: Get a list of reading assignment submissions from the last 24 hours

Import-Module Microsoft.Graph.Beta.Education

Get-MgBetaEducationReportReadingAssignmentSubmission

This example will get a list of reading assignment submissions from the last 24 hours

Example 2: Get a list of the reading assignment submissions for a specific date using $filter

Import-Module Microsoft.Graph.Beta.Education

Get-MgBetaEducationReportReadingAssignmentSubmission -Filter "submissionDateTime gt 2023-10-10T00:00:00.000Z and submissionDateTime lt 2023-10-11T00:00:00Z" 

This example will get a list of the reading assignment submissions for a specific date using $filter