Skip to content

Latest commit

 

History

History
22 lines (12 loc) · 673 Bytes

File metadata and controls

22 lines (12 loc) · 673 Bytes

Example 1: Get a list of the Reading Coach passages from the last 24 hours

Import-Module Microsoft.Graph.Beta.Education

Get-MgBetaEducationReportReadingCoachPassage

This example will get a list of the reading coach passages from the last 24 hours

Example 2: Get a list of the Reading Coach passages for a specific date using $filter

Import-Module Microsoft.Graph.Beta.Education

Get-MgBetaEducationReportReadingCoachPassage -Filter "practicedAtDateTime gt 2025-06-22T00:00:00Z and practicedAtDateTime lt 2025-06-23T00:00:00Z" 

This example will get a list of the reading coach passages for a specific date using $filter