Namespace: microsoft.graph
Important
APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Create a new module in a class.
Only teachers in a class can create a module. Modules start in the draft state, which means that students won't see the modules until publication.
This API is available in the following national cloud deployments.
| Global service |
US Government L4 |
US Government L5 (DOD) |
China operated by 21Vianet |
| ✅ |
❌ |
❌ |
❌ |
Permissions
Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.
| Permission type |
Least privileged permissions |
Higher privileged permissions |
| Delegated (work or school account) |
EduCurricula.ReadWrite |
Not available. |
| Delegated (personal Microsoft account) |
Not supported. |
Not supported. |
| Application |
EduCurricula.ReadWrite.All |
Not available. |
HTTP request
POST /education/classes/{id}/modules
Request body
In the request body, supply a JSON representation of an educationModule object.
Response
If successful, this method returns a 201 Created response code and an educationModule object in the request body.
Example
Request
The following example shows a request.
POST https://graph.microsoft.com/beta/education/classes/37d99af7-cfc5-4e3b-8566-f7d40e4a2070/modules
Content-type: application/json
{
"displayName":"Module 2",
"languageTag": "en-GB",
"description": "Description for Module 2"
}
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Beta.Models;
var requestBody = new EducationModule
{
DisplayName = "Module 2",
LanguageTag = "en-GB",
Description = "Description for Module 2",
};
// 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.PostAsync(requestBody);
// Code snippets are only available for the latest major version. Current major version is $v0.*
// Dependencies
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-beta-sdk-go"
graphmodels "github.com/microsoftgraph/msgraph-beta-sdk-go/models"
//other-imports
)
requestBody := graphmodels.NewEducationModule()
displayName := "Module 2"
requestBody.SetDisplayName(&displayName)
languageTag := "en-GB"
requestBody.SetLanguageTag(&languageTag)
description := "Description for Module 2"
requestBody.SetDescription(&description)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
modules, err := graphClient.Education().Classes().ByEducationClassId("educationClass-id").Modules().Post(context.Background(), requestBody, nil)
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
EducationModule educationModule = new EducationModule();
educationModule.setDisplayName("Module 2");
educationModule.setLanguageTag("en-GB");
educationModule.setDescription("Description for Module 2");
EducationModule result = graphClient.education().classes().byEducationClassId("{educationClass-id}").modules().post(educationModule);
const options = {
authProvider,
};
const client = Client.init(options);
const educationModule = {
displayName: 'Module 2',
languageTag: 'en-GB',
description: 'Description for Module 2'
};
await client.api('/education/classes/37d99af7-cfc5-4e3b-8566-f7d40e4a2070/modules')
.version('beta')
.post(educationModule);
<?php
use Microsoft\Graph\Beta\GraphServiceClient;
use Microsoft\Graph\Beta\Generated\Models\EducationModule;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new EducationModule();
$requestBody->setDisplayName('Module 2');
$requestBody->setLanguageTag('en-GB');
$requestBody->setDescription('Description for Module 2');
$result = $graphServiceClient->education()->classes()->byEducationClassId('educationClass-id')->modules()->post($requestBody)->wait();
Import-Module Microsoft.Graph.Beta.Education
$params = @{
displayName = "Module 2"
languageTag = "en-GB"
description = "Description for Module 2"
}
New-MgBetaEducationClassModule -EducationClassId $educationClassId -BodyParameter $params
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph_beta import GraphServiceClient
from msgraph_beta.generated.models.education_module import EducationModule
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = EducationModule(
display_name = "Module 2",
language_tag = "en-GB",
description = "Description for Module 2",
)
result = await graph_client.education.classes.by_education_class_id('educationClass-id').modules.post(request_body)
Response
The following example shows the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 201 Created
Content-type: application/json
{
"@odata.context": "https://graph.microsoft.com/beta/$metadata#education/classes('37d99af7-cfc5-4e3b-8566-f7d40e4a2070')/modules/$entity",
"displayName": "Module 2",
"description": "Description for Module 2",
"resourcesFolderUrl": null,
"isPinned": false,
"status": "draft",
"createdDateTime": "2025-05-16T20:23:47.0119173Z",
"lastModifiedDateTime": "2025-05-16T20:23:47.0641043Z",
"languageTag": "en-GB",
"id": "1516df94-6817-405f-877f-d440ed32ca06",
"createdBy": {
"application": null,
"device": null,
"user": {
"id": "fffafb29-e8bc-4de3-8106-be76ed2ad499",
"displayName": null
}
},
"lastModifiedBy": {
"application": null,
"device": null,
"user": {
"id": "fffafb29-e8bc-4de3-8106-be76ed2ad499",
"displayName": null
}
}
}