名前空間: microsoft.graph
生徒が練習した リーディングコーチの一覧 を取得します。
この API は、次の国内クラウド展開で使用できます。
| グローバル サービス |
米国政府機関 L4 |
米国政府機関 L5 (DOD) |
21Vianet が運営する中国 |
| ✅ |
❌ |
❌ |
❌ |
アクセス許可
この API の最小特権としてマークされているアクセス許可またはアクセス許可を選択します。
アプリで必要な場合にのみ、より高い特権のアクセス許可またはアクセス許可を使用します。 委任されたアクセス許可とアプリケーションのアクセス許可の詳細については、「アクセス許可の種類」を参照してください。 これらのアクセス許可の詳細については、「アクセス許可のリファレンス」を参照してください。
| アクセス許可の種類 |
最小特権アクセス許可 |
より高い特権のアクセス許可 |
| 委任 (職場または学校のアカウント) |
サポートされていません。 |
サポートされていません。 |
| 委任 (個人用 Microsoft アカウント) |
サポートされていません。 |
サポートされていません。 |
| アプリケーション |
EduReports-Reading.ReadAnonymous.All |
EduReports-Reading.Read.All |
HTTP 要求
GET /education/reports/readingCoachPassages
オプションのクエリ パラメーター
このメソッドは、 $top、 $filter、 $count、 $skipToken、 $select OData クエリ パラメーターをサポートし、応答をカスタマイズするのに役立ちます。 一般的な情報については、「OData クエリ パラメーター」を参照してください。
| 名前 |
説明 |
| Authorization |
ベアラー {token}。 必須です。
認証と認可についての詳細をご覧ください。 |
要求本文
このメソッドには、要求本文を指定しません。
応答
成功した場合、このメソッドは応答コード 200 OK と、応答本文の readingCoachPassage オブジェクトのコレクションを返します。
例
例 1: 過去 24 時間のリーディング コーチの一覧を取得する
次の例は、過去 24 時間のリーディング コーチの一覧を取得する方法を示しています。
要求
次の例は要求を示しています。
GET https://graph.microsoft.com/v1.0/education/reports/readingCoachPassages
// Code snippets are only available for the latest version. Current version is 5.x
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.Education.Reports.ReadingCoachPassages.GetAsync();
プロジェクトに SDK を追加し、authProvider インスタンスを作成する方法の詳細については、SDK のドキュメントを参照してください。
// Code snippets are only available for the latest major version. Current major version is $v1.*
// Dependencies
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-sdk-go"
//other-imports
)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
readingCoachPassages, err := graphClient.Education().Reports().ReadingCoachPassages().Get(context.Background(), nil)
プロジェクトに SDK を追加し、authProvider インスタンスを作成する方法の詳細については、SDK のドキュメントを参照してください。
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
ReadingCoachPassageCollectionResponse result = graphClient.education().reports().readingCoachPassages().get();
プロジェクトに SDK を追加し、authProvider インスタンスを作成する方法の詳細については、SDK のドキュメントを参照してください。
const options = {
authProvider,
};
const client = Client.init(options);
let readingCoachPassages = await client.api('/education/reports/readingCoachPassages')
.get();
プロジェクトに SDK を追加し、authProvider インスタンスを作成する方法の詳細については、SDK のドキュメントを参照してください。
<?php
use Microsoft\Graph\GraphServiceClient;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$result = $graphServiceClient->education()->reports()->readingCoachPassages()->get()->wait();
プロジェクトに SDK を追加し、authProvider インスタンスを作成する方法の詳細については、SDK のドキュメントを参照してください。
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph import GraphServiceClient
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
result = await graph_client.education.reports.reading_coach_passages.get()
プロジェクトに SDK を追加し、authProvider インスタンスを作成する方法の詳細については、SDK のドキュメントを参照してください。
応答
次の例は、過去 24 時間の既定の応答を示しています。
注: ここに示す応答オブジェクトは、読みやすさのために短縮されている場合があります。
HTTP/1.1 200 OK
Content-Type: application/json
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#education/reports/readingCoachPassages",
"value": [
{
"practicedAtDateTime": "2025-06-25T14:51:31.0663974Z",
"studentId": "27a9716d-05aa-4aaa-ae18-9fc10318a03d",
"practiceWords": [
"science",
"experiment",
"laboratory",
"hypothesis",
"observation"
],
"wordsPerMinute": 55.5,
"wordsAccuracyPercentage": 92.0,
"timeSpentReadingInSeconds": 165.75,
"languageTag": "en-US",
"storyType": "userProvided",
"isReadingCompleted": true
},
{
"practicedAtDateTime": "2025-06-25T12:51:31.0663974Z",
"studentId": "27a9716d-05aa-4aaa-ae18-9fc10318a03d",
"practiceWords": [
"tortoise",
"experiment"
],
"wordsPerMinute": 52.5,
"wordsAccuracyPercentage": 94.5,
"timeSpentReadingInSeconds": 180.5,
"languageTag": "en-US",
"storyType": "aiGenerated",
"isReadingCompleted": true
}
]
}
例 2: $filterを使用して、特定の日付のリーディング コーチのパッセージの一覧を取得する
次の例は、 $filter クエリ パラメーターを使用して、特定の日付の Reading Coach パッセージを取得する方法を示しています。 要求された時間範囲は 24 時間以下である必要があります。
要求
次の例は要求を示しています。
GET https://graph.microsoft.com/v1.0/education/reports/readingCoachPassages?$filter=practicedAtDateTime gt 2025-06-22T00:00:00Z and practicedAtDateTime lt 2025-06-23T00:00:00Z
// Code snippets are only available for the latest version. Current version is 5.x
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.Education.Reports.ReadingCoachPassages.GetAsync((requestConfiguration) =>
{
requestConfiguration.QueryParameters.Filter = "practicedAtDateTime gt 2025-06-22T00:00:00Z and practicedAtDateTime lt 2025-06-23T00:00:00Z";
});
プロジェクトに SDK を追加し、authProvider インスタンスを作成する方法の詳細については、SDK のドキュメントを参照してください。
// Code snippets are only available for the latest major version. Current major version is $v1.*
// Dependencies
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-sdk-go"
grapheducation "github.com/microsoftgraph/msgraph-sdk-go/education"
//other-imports
)
requestFilter := "practicedAtDateTime gt 2025-06-22T00:00:00Z and practicedAtDateTime lt 2025-06-23T00:00:00Z"
requestParameters := &grapheducation.ReportsReadingCoachPassagesRequestBuilderGetQueryParameters{
Filter: &requestFilter,
}
configuration := &grapheducation.ReportsReadingCoachPassagesRequestBuilderGetRequestConfiguration{
QueryParameters: requestParameters,
}
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
readingCoachPassages, err := graphClient.Education().Reports().ReadingCoachPassages().Get(context.Background(), configuration)
プロジェクトに SDK を追加し、authProvider インスタンスを作成する方法の詳細については、SDK のドキュメントを参照してください。
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
ReadingCoachPassageCollectionResponse result = graphClient.education().reports().readingCoachPassages().get(requestConfiguration -> {
requestConfiguration.queryParameters.filter = "practicedAtDateTime gt 2025-06-22T00:00:00Z and practicedAtDateTime lt 2025-06-23T00:00:00Z";
});
プロジェクトに SDK を追加し、authProvider インスタンスを作成する方法の詳細については、SDK のドキュメントを参照してください。
const options = {
authProvider,
};
const client = Client.init(options);
let readingCoachPassages = await client.api('/education/reports/readingCoachPassages')
.filter('practicedAtDateTime gt 2025-06-22T00:00:00Z and practicedAtDateTime lt 2025-06-23T00:00:00Z')
.get();
プロジェクトに SDK を追加し、authProvider インスタンスを作成する方法の詳細については、SDK のドキュメントを参照してください。
<?php
use Microsoft\Graph\GraphServiceClient;
use Microsoft\Graph\Generated\Education\Reports\ReadingCoachPassages\ReadingCoachPassagesRequestBuilderGetRequestConfiguration;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestConfiguration = new ReadingCoachPassagesRequestBuilderGetRequestConfiguration();
$queryParameters = ReadingCoachPassagesRequestBuilderGetRequestConfiguration::createQueryParameters();
$queryParameters->filter = "practicedAtDateTime gt 2025-06-22T00:00:00Z and practicedAtDateTime lt 2025-06-23T00:00:00Z";
$requestConfiguration->queryParameters = $queryParameters;
$result = $graphServiceClient->education()->reports()->readingCoachPassages()->get($requestConfiguration)->wait();
プロジェクトに SDK を追加し、authProvider インスタンスを作成する方法の詳細については、SDK のドキュメントを参照してください。
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph import GraphServiceClient
from msgraph.generated.education.reports.reading_coach_passages.reading_coach_passages_request_builder import ReadingCoachPassagesRequestBuilder
from kiota_abstractions.base_request_configuration import RequestConfiguration
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
query_params = ReadingCoachPassagesRequestBuilder.ReadingCoachPassagesRequestBuilderGetQueryParameters(
filter = "practicedAtDateTime gt 2025-06-22T00:00:00Z and practicedAtDateTime lt 2025-06-23T00:00:00Z",
)
request_configuration = RequestConfiguration(
query_parameters = query_params,
)
result = await graph_client.education.reports.reading_coach_passages.get(request_configuration = request_configuration)
プロジェクトに SDK を追加し、authProvider インスタンスを作成する方法の詳細については、SDK のドキュメントを参照してください。
応答
次の例は応答を示しています。
注: ここに示す応答オブジェクトは、読みやすさのために短縮されている場合があります。
HTTP/1.1 200 OK
Content-Type: application/json
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#education/reports/readingCoachPassages",
"value": [
{
"practicedAtDateTime": "2025-06-22T14:51:31.0663974Z",
"studentId": "27a9716d-05aa-4aaa-ae18-9fc10318a03d",
"practiceWords": [
"science",
"experiment",
"laboratory",
"hypothesis",
"observation"
],
"wordsPerMinute": 55.5,
"wordsAccuracyPercentage": 92.0,
"timeSpentReadingInSeconds": 165.75,
"languageTag": "en-US",
"storyType": "userProvided",
"isReadingCompleted": true
},
{
"practicedAtDateTime": "2025-06-22T12:51:31.0663974Z",
"studentId": "27a9716d-05aa-4aaa-ae18-9fc10318a03d",
"practiceWords": [
"tortoise",
"experiment"
],
"wordsPerMinute": 52.5,
"wordsAccuracyPercentage": 94.5,
"timeSpentReadingInSeconds": 180.5,
"languageTag": "en-US",
"storyType": "aiGenerated",
"isReadingCompleted": true
}
]
}