名前空間: microsoft.graph
学生が提出した 話者の課題の 一覧を取得します。
この API は、次の国内クラウド展開で使用できます。
| グローバル サービス | 米国政府機関 L4 | 米国政府機関 L5 (DOD) | 21Vianet が運営する中国 |
|---|---|---|---|
| ✅ | ❌ | ❌ | ❌ |
アクセス許可
この API の最小特権としてマークされているアクセス許可またはアクセス許可を選択します。 アプリで必要な場合にのみ、より高い特権のアクセス許可またはアクセス許可を使用します。 委任されたアクセス許可とアプリケーションのアクセス許可の詳細については、「アクセス許可の種類」を参照してください。 これらのアクセス許可の詳細については、「アクセス許可のリファレンス」を参照してください。
| アクセス許可の種類 | 最小特権アクセス許可 | より高い特権のアクセス許可 |
|---|---|---|
| 委任 (職場または学校のアカウント) | サポートされていません。 | サポートされていません。 |
| 委任 (個人用 Microsoft アカウント) | サポートされていません。 | サポートされていません。 |
| アプリケーション | EduReports-Reading.ReadAnonymous.All | EduReports-Reading.Read.All |
HTTP 要求
GET /education/reports/speakerAssignmentSubmissions
オプションのクエリ パラメーター
このメソッドは、 $top、 $filter、 $count、 $skipToken、 $select OData クエリ パラメーターをサポートし、応答をカスタマイズするのに役立ちます。 一般的な情報については、「OData クエリ パラメーター」を参照してください。
要求ヘッダー
| 名前 | 説明 |
|---|---|
| Authorization | ベアラー {token}。 必須です。 認証と認可についての詳細をご覧ください。 |
要求本文
このメソッドには、要求本文を指定しません。
応答
成功した場合、このメソッドは応答コード 200 OK と、応答本文の speakerAssignmentSubmission オブジェクトのコレクションを返します。
例
例 1: 過去 24 時間の発表者の割り当て申請の一覧を取得する
次の例は、過去 24 時間から話者の割り当て申請の一覧を取得する方法を示しています。
要求
次の例は要求を示しています。
GET https://graph.microsoft.com/v1.0/education/reports/speakerAssignmentSubmissions
応答
次の例は、過去 24 時間の既定の応答を示しています。
注: ここに示す応答オブジェクトは、読みやすさのために短縮されている場合があります。
HTTP/1.1 200 OK
Content-Type: application/json
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#education/reports/speakerAssignmentSubmissions",
"value": [
{
"assignmentId": "f2a0074a-eca7-4563-9de2-17fa0a274ed1",
"classId": "36957e6c-2716-4794-b88b-5983e2502d7d",
"submissionId": "3d292db5-189e-468b-8ca1-23ec6f74a8c2",
"studentId": "6ade364a-ea37-4a58-82df-1814fb617618",
"submissionDateTime": "2025-05-28T14:51:31.0663974Z",
"lengthOfSubmissionInSeconds": 310.25,
"wordsSpokenCount": 580,
"monotoneOccurrencesCount": 5,
"averageWordsPerMinutePace": 115,
"fillerWordsOccurrencesCount": 9,
"topFillerWords": [
"so",
"umm",
"kind of"
],
"topMispronouncedWords": [
"prerequisites",
"anonymous",
"miscellaneous"
],
"nonInclusiveLanguageOccurrencesCount": 1,
"topNonInclusiveWordsAndPhrases": [
"you guys"
],
"repetitiveLanguageOccurrencesCount": 4,
"topRepetitiveWordsAndPhrases": [
"just",
"right",
"okay"
],
"lostEyeContactOccurrencesCount": 3,
"incorrectCameraDistanceOccurrencesCount": 0,
"obstructedViewOccurrencesCount": 0
},
{
"assignmentId": "1d468582-009d-42cb-9e32-172806ea5349",
"classId": "4e9fef60-58a3-423d-9f38-fc0425bb91ca",
"submissionId": "7058d2c1-9e3e-4dae-9932-970b8b45e87b",
"studentId": "28e10270-0566-46ef-80ab-435608609047",
"submissionDateTime": "2025-05-28T16:11:31.066402Z",
"lengthOfSubmissionInSeconds": 198.5,
"wordsSpokenCount": 380,
"monotoneOccurrencesCount": 3,
"averageWordsPerMinutePace": 135,
"fillerWordsOccurrencesCount": 7,
"topFillerWords": [
"um",
"actually"
],
"topMispronouncedWords": [
"specific",
"particularly"
],
"nonInclusiveLanguageOccurrencesCount": 0,
"topNonInclusiveWordsAndPhrases": [],
"repetitiveLanguageOccurrencesCount": 3,
"topRepetitiveWordsAndPhrases": [
"just"
],
"lostEyeContactOccurrencesCount": null,
"incorrectCameraDistanceOccurrencesCount": null,
"obstructedViewOccurrencesCount": null
}
]
}
例 2: $filterを使用して、特定の日付の発表者割り当て申請の一覧を取得する
次の例では、 $filter クエリ パラメーターを使用して、特定の日付の話者割り当て申請の一覧を取得する方法を示します。 要求された時間範囲は 24 時間以下である必要があります。
要求
次の例は要求を示しています。
GET https://graph.microsoft.com/v1.0/education/reports/speakerAssignmentSubmissions?$filter=submissionDateTime gt 2025-05-28T00:00:00Z and submissionDateTime lt 2025-05-29T00:00:00Z
応答
次の例は応答を示しています。
注: ここに示す応答オブジェクトは、読みやすさのために短縮されている場合があります。
HTTP/1.1 200 OK
Content-Type: application/json
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#education/reports/speakerAssignmentSubmissions",
"value": [
{
"assignmentId": "3221a41a-6cdc-4deb-ad50-27a7e179ec27",
"classId": "4e9e40aa-b9ac-4af6-8a1d-4c44c27080da",
"submissionId": "3d292db5-189e-468b-8ca1-23ec6f74a8c2",
"studentId": "6ade364a-ea37-4a58-82df-1814fb617618",
"submissionDateTime": "2025-05-28T01:27:42.5458886Z",
"lengthOfSubmissionInSeconds": 185.5,
"wordsSpokenCount": 350,
"monotoneOccurrencesCount": 8,
"averageWordsPerMinutePace": 120,
"fillerWordsOccurrencesCount": 14,
"topFillerWords": [
"um",
"like",
"you know",
"actually"
],
"topMispronouncedWords": [
"particularly",
"subsequently",
"statistics"
],
"nonInclusiveLanguageOccurrencesCount": 2,
"topNonInclusiveWordsAndPhrases": [
"you guys",
"chairman"
],
"repetitiveLanguageOccurrencesCount": 6,
"topRepetitiveWordsAndPhrases": [
"basically",
"essentially",
"so"
],
"lostEyeContactOccurrencesCount": 5,
"incorrectCameraDistanceOccurrencesCount": null,
"obstructedViewOccurrencesCount": 0
},
{
"assignmentId": "f88c2e12-2277-4e5a-bc19-207278e820c5",
"classId": "39aeb453-fe67-4d19-95b9-e588095cb13e",
"submissionId": "c0d9706a-23a8-4d27-ba9e-5c97a4cede34",
"studentId": "27a9716d-05aa-4aaa-ae18-9fc10318a03d",
"submissionDateTime": "2025-05-28T16:27:42.5458933Z",
"lengthOfSubmissionInSeconds": 240.75,
"wordsSpokenCount": 420,
"monotoneOccurrencesCount": null,
"averageWordsPerMinutePace": 105,
"fillerWordsOccurrencesCount": 18,
"topFillerWords": [
"um",
"uh",
"like",
"sort of"
],
"topMispronouncedWords": [
"necessarily",
"specifically",
"phenomenon"
],
"nonInclusiveLanguageOccurrencesCount": 0,
"topNonInclusiveWordsAndPhrases": [],
"repetitiveLanguageOccurrencesCount": 9,
"topRepetitiveWordsAndPhrases": [
"literally",
"actually",
"basically"
],
"lostEyeContactOccurrencesCount": 7,
"incorrectCameraDistanceOccurrencesCount": 2,
"obstructedViewOccurrencesCount": 1
},
{
"assignmentId": "3ed5169c-ea75-4a3f-ae4e-6abe401064b0",
"classId": "00bc1413-d329-4a52-a92a-51971c0a3cf3",
"submissionId": "6e43da78-9d50-4fa7-b707-8fbd05c04e67",
"studentId": "02bcca3c-70cf-437b-813d-dd2bc32bef02",
"submissionDateTime": "2025-05-28T18:27:42.5458952Z",
"lengthOfSubmissionInSeconds": 275.85,
"wordsSpokenCount": 530,
"monotoneOccurrencesCount": 15,
"averageWordsPerMinutePace": 125,
"fillerWordsOccurrencesCount": 22,
"topFillerWords": [
"like",
"you know",
"uh",
"um",
"I mean"
],
"topMispronouncedWords": [
"entrepreneur",
"hierarchy",
"infrastructure"
],
"nonInclusiveLanguageOccurrencesCount": 3,
"topNonInclusiveWordsAndPhrases": [
"mankind",
"guys",
"manpower"
],
"repetitiveLanguageOccurrencesCount": 11,
"topRepetitiveWordsAndPhrases": [
"basically",
"sort of",
"kind of",
"so"
],
"lostEyeContactOccurrencesCount": 8,
"incorrectCameraDistanceOccurrencesCount": 3,
"obstructedViewOccurrencesCount": 2
}
]
}