名前空間: microsoft.graph
学生によって送信された 読み取り課題の 一覧を取得します。
この API は、次の国内クラウド展開で使用できます。
| グローバル サービス | 米国政府機関 L4 | 米国政府機関 L5 (DOD) | 21Vianet が運営する中国 |
|---|---|---|---|
| ✅ | ❌ | ❌ | ❌ |
アクセス許可
この API の最小特権としてマークされているアクセス許可またはアクセス許可を選択します。 アプリで必要な場合にのみ、より高い特権のアクセス許可またはアクセス許可を使用します。 委任されたアクセス許可とアプリケーションのアクセス許可の詳細については、「アクセス許可の種類」を参照してください。 これらのアクセス許可の詳細については、「アクセス許可のリファレンス」を参照してください。
| アクセス許可の種類 | 最小特権アクセス許可 | より高い特権のアクセス許可 |
|---|---|---|
| 委任 (職場または学校のアカウント) | サポートされていません。 | サポートされていません。 |
| 委任 (個人用 Microsoft アカウント) | サポートされていません。 | サポートされていません。 |
| アプリケーション | EduReports-Reading.ReadAnonymous.All | EduReports-Reading.Read.All |
HTTP 要求
GET /education/reports/readingAssignmentSubmissions
オプションのクエリ パラメーター
このメソッドは、 $top、 $filter、 $count、 $skiptoken 、 $select OData クエリ パラメーターをサポートし、応答のカスタマイズに役立ちます。 一般的な情報については、「OData クエリ パラメーター」を参照してください。
要求ヘッダー
| 名前 | 説明 |
|---|---|
| Authorization | ベアラー {token}。 必須です。 認証と認可についての詳細をご覧ください。 |
要求本文
このメソッドには、要求本文を指定しません。
応答
成功した場合、このメソッドは 200 OK 応答コードと、応答本文の readingAssignmentSubmission オブジェクトのコレクションを返します。
例
例 1: 過去 24 時間の読み取り割り当て申請の一覧を取得する
次の例では、過去 24 時間の読み取り割り当ての送信の一覧を取得する方法を示します。
要求
次の例は要求を示しています。
GET https://graph.microsoft.com/v1.0/education/reports/readingAssignmentSubmissions
応答
次の例は、過去 24 時間の既定の応答を示しています。
注: ここに示す応答オブジェクトは、読みやすさのために短縮されている場合があります。
HTTP/1.1 200 OK
Content-Type: application/json
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#education/reports/readingAssignmentSubmissions",
"value": [
{
"action": "Attempt",
"assignmentId": "7622da88-d7fd-4542-a62b-40e11304675e",
"classId": "d208c32d-6d82-442f-bedd-d730d0d2a539",
"submissionId": "22142311-f797-90ec-997e-a8b16d3d4479",
"studentId": "392d15be-6e42-4e50-babf-56103abfc525",
"submissionDateTime": "2025-06-16T23:56:17.1505334Z",
"accuracyScore": 25.0,
"wordsPerMinute": 135.0,
"wordCount": 138,
"mispronunciations": 1,
"omissions": 99,
"insertions": 3,
"selfCorrections": 0,
"repetitions": 0,
"monotoneScore": 100.0,
"missedShorts": 0,
"missedExclamationMarks": 1,
"missedPeriods": 1,
"missedQuestionMarks": 0,
"unexpectedPauses": 1,
"challengingWords": [
{
"word": "many",
"count": 1
}
]
},
{
"action": "Attempt",
"assignmentId": "7622da88-d7fd-4542-a62b-40e11304675e",
"classId": "d208c32d-6d82-442f-bedd-d730d0d2a539",
"submissionId": "22142311-f797-90ec-997e-a8b16d3d4479",
"studentId": "392d15be-6e42-4e50-babf-56103abfc525",
"submissionDateTime": "2025-06-16T23:54:22.6784676Z",
"accuracyScore": 36.0,
"wordsPerMinute": 190.0,
"wordCount": 94,
"mispronunciations": 6,
"omissions": 54,
"insertions": 0,
"selfCorrections": 0,
"repetitions": 0,
"monotoneScore": 100.0,
"missedShorts": 0,
"missedExclamationMarks": 0,
"missedPeriods": 5,
"missedQuestionMarks": 0,
"unexpectedPauses": 0,
"challengingWords": [
{
"word": "polar",
"count": 1
},
{
"word": "bears",
"count": 1
},
{
"word": "snow",
"count": 1
},
{
"word": "closed",
"count": 1
},
{
"word": "drinks",
"count": 1
},
{
"word": "milk",
"count": 1
}
]
}
]
}
例 2: $filterを使用して、特定の日付の読み取り割り当て申請の一覧を取得する
次の例では、 $filter クエリ パラメーターを使用して、特定の日付の読み取り割り当ての送信の一覧を取得する方法を示します。 要求された時間範囲は 24 時間以下である必要があります。
要求
次の例は要求を示しています。
GET https://graph.microsoft.com/v1.0/education/reports/readingAssignmentSubmissions?$filter=submissionDateTime gt 2025-06-10T00:00:00.000Z and submissionDateTime lt 2025-06-11T00:00:00Z
応答
次の例は応答を示しています。
注: ここに示す応答オブジェクトは、読みやすさのために短縮されている場合があります。
HTTP/1.1 200 OK
Content-Type: application/json
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#education/reports/readingAssignmentSubmissions",
"value": [
{
"action": "Attempt",
"assignmentId": "f45e1c35-81fd-48b0-b214-1216d6b42203",
"classId": "dd1324ff-93f7-4e57-8bd4-355f180cd8f1",
"submissionId": "2e8f9537-75e1-bf0c-83dd-a2c3de140aa4",
"studentId": "225031f2-88ae-4566-b636-6a032dfbed4c",
"submissionDateTime": "2025-06-10T21:43:21.9472942Z",
"accuracyScore": 38.0,
"wordsPerMinute": 135.0,
"wordCount": 94,
"mispronunciations": 3,
"omissions": 55,
"insertions": 0,
"selfCorrections": 0,
"repetitions": 0,
"monotoneScore": 0.0,
"missedShorts": 0,
"missedExclamationMarks": 0,
"missedPeriods": 4,
"missedQuestionMarks": 0,
"unexpectedPauses": 0,
"challengingWords": [
{
"word": "bears",
"count": 1
},
{
"word": "eyes",
"count": 1
},
{
"word": "closed",
"count": 1
}
]
},
{
"action": "Attempt",
"assignmentId": "57717841-1965-4ff3-9601-b0366e583069",
"classId": "b609d225-c661-4562-933a-e23679175f0b",
"submissionId": "ca42757d-7914-afe2-b044-f9695694b39b",
"studentId": "392d15be-6e42-4e50-babf-56103abfc525",
"submissionDateTime": "2025-06-10T20:21:39.4111647Z",
"accuracyScore": 0.0,
"wordsPerMinute": 0.0,
"wordCount": 150,
"mispronunciations": 0,
"omissions": 150,
"insertions": 0,
"selfCorrections": 0,
"repetitions": 0,
"monotoneScore": 0.0,
"missedShorts": 0,
"missedExclamationMarks": 0,
"missedPeriods": 0,
"missedQuestionMarks": 0,
"unexpectedPauses": 0,
"challengingWords": []
},
{
"action": "EditMiscue",
"assignmentId": "c5c08b85-35fa-48d6-99bb-2168e53fd041",
"classId": "d208c32d-6d82-442f-bedd-d730d0d2a539",
"submissionId": "3ef9af57-20f1-d7c5-3705-8ec80db3121c",
"studentId": "392d15be-6e42-4e50-babf-56103abfc525",
"submissionDateTime": "2025-06-10T20:10:09.4739427Z",
"accuracyScore": 0.0,
"wordsPerMinute": 0.0,
"wordCount": 384,
"mispronunciations": 0,
"omissions": 383,
"insertions": 1,
"selfCorrections": 0,
"repetitions": 0,
"monotoneScore": 0.0,
"missedShorts": 0,
"missedExclamationMarks": 0,
"missedPeriods": 0,
"missedQuestionMarks": 0,
"unexpectedPauses": 0,
"challengingWords": []
}
]
}