ESC
Type to search...

EduCurricula.Read.All

Export JSON
Export CSV
Copy URL
Print
Application Read All Resources

Allows the app to read all modules and resources, without a signed-in user.

Permission data: April 6, 2026 at 4:06 AM UTC
Delegated Access App-Only Access

Permission Details

Application Permission

Read all class modules and resources

Allows the app to read all modules and resources, without a signed-in user.

Properties

Microsoft Graph v1.0 endpoint-derived-docs

Properties is shown from stable Microsoft Graph v1.0 metadata.

Property Type Description
content Stream The content stream
contentUrl String (url) The URL for downloading the content
assignmentCategories educationCategory collection All categories associated with this class. Nullable.
assignmentDefaults object Specifies class-level defaults respected by new assignments created in the class.
assignments educationAssignment collection All assignments associated with this class. Nullable.
assignmentSettings object Specifies class-level assignments settings.
classCode stringNullable Class code used by the school to identify the class.
course object
createdBy object Entity who created the class
description stringNullable Description of the class.
displayName string Name of the class.
externalId stringNullable ID of the class from the syncing system.
externalName stringNullable Name of the class in the syncing system.
externalSource object How this class was created. The possible values are: sis, manual.
externalSourceDetail stringNullable The name of the external source this resource was generated from.

Showing 15 of 24 properties.

JSON Representation

Microsoft Graph v1.0 endpoint-derived-docs

JSON representation is shown from stable Microsoft Graph v1.0 metadata.

JSON representation
{
  "content": "String",
  "contentUrl": {
    "@type": "String (url)",
    "id": "00000000-0000-0000-0000-000000000000"
  },
  "assignmentCategories": [
    {
      "@type": "educationCategory",
      "id": "00000000-0000-0000-0000-000000000000"
    }
  ],
  "assignmentDefaults": {
    "sample": "value"
  },
  "assignments": [
    {
      "@type": "educationAssignment",
      "id": "00000000-0000-0000-0000-000000000000"
    }
  ],
  "assignmentSettings": {
    "sample": "value"
  },
  "classCode": "String",
  "course": {
    "sample": "value"
  },
  "createdBy": {
    "sample": "value"
  },
  "description": "String",
  "displayName": "String",
  "externalId": "String",
  "externalName": "String",
  "externalSource": {
    "sample": "value"
  },
  "externalSourceDetail": "String",
  "grade": "String",
  "group": {
    "sample": "value"
  },
  "id": "String",
  "mailNickname": "String",
  "members": [
    {
      "@type": "educationUser",
      "id": "00000000-0000-0000-0000-000000000000"
    }
  ]
}

Relationships

Microsoft Graph v1.0 schema-derived

Relationships is shown from stable Microsoft Graph v1.0 metadata.

Relationship Type Description
assignmentCategories educationCategory collection All categories associated with this class. Nullable.
assignments educationAssignment collection All assignments associated with this class. Nullable.
members educationUser collection All users in the class. Nullable.
modules educationModule collection All modules in the class. Nullable.
schools educationSchool collection All schools that this class is associated with. Nullable.
teachers educationUser collection All teachers in the class. Nullable.

Graph Methods

Delegated access App-only access
Exact Microsoft Learn match

Microsoft Graph v1.0 endpoints are mapped directly from refreshed Microsoft Learn permissions tables.

Methods
GET /education/classes/{class-id}/modules/{module-id}/resources/{resource-id}
GET /education/classes/{id}/modules
GET /education/classes/{id}/modules/{id}
GET /education/classes/{id}/modules/{id}/resources
Exact Microsoft Learn match

Microsoft Graph beta endpoints are mapped directly from refreshed Microsoft Learn permissions tables.

Methods
GET /education/classes/{class-id}/modules/{module-id}/resources/{resource-id}
GET /education/classes/{id}/modules
GET /education/classes/{id}/modules/{id}
GET /education/classes/{id}/modules/{id}/resources
Exact Microsoft Learn PowerShell match

Microsoft Graph PowerShell v1.0 commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.

Commands
Get-MgEducationClassModule /education/classes/{id}/modules
List class modules
Get-MgEducationClassModule /education/classes/{id}/modules/{id}
Get educationModule
Get-MgEducationClassModuleResource /education/classes/{class-id}/modules/{module-id}/resources/{resource-id}
Get educationModuleResource
Get-MgEducationClassModuleResource /education/classes/{id}/modules/{id}/resources
List module resources
Exact Microsoft Learn PowerShell match

Microsoft Graph PowerShell beta commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.

Commands
Get-MgBetaEducationClassModule /education/classes/{id}/modules
List class modules
Get-MgBetaEducationClassModule /education/classes/{id}/modules/{id}
Get educationModule
Get-MgBetaEducationClassModuleResource /education/classes/{class-id}/modules/{module-id}/resources/{resource-id}
Get educationModuleResource
Get-MgBetaEducationClassModuleResource /education/classes/{id}/modules/{id}/resources
List module resources

Code Examples

C# / .NET SDK
Get educationModule
// 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.Classes["{educationClass-id}"].Modules["{educationModule-id}"].GetAsync();
JavaScript
Get educationModule
const options = {
	authProvider,
};

const client = Client.init(options);

let educationModule = await client.api('/education/classes/37d99af7-cfc5-4e3b-8566-f7d40e4a2070/modules/72a3879f-af73-4179-8a0e-4cb29c0fa369')
	.get();
PowerShell
Get educationModule
Import-Module Microsoft.Graph.Education

Get-MgEducationClassModule -EducationClassId $educationClassId -EducationModuleId $educationModuleId
Python
Get educationModule
# 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.classes.by_education_class_id('educationClass-id').modules.by_education_module_id('educationModule-id').get()

App Registration

1

Navigate to Azure Portal

Go to App registrations in Microsoft Entra admin center

2

Add API Permission

Select your app → API permissions → Add a permission → Microsoft Graph

3

Select Permission Type

Choose Application permissions and search for EduCurricula.Read.All

4

Grant Admin Consent

Application permissions always require admin consent.