Update educationModule
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.
Update an educationModule object in a class.
Only teachers in the class can perform this operation. Note that you can't use a PATCH request to change the status of a module. Use the publish action to change the module status.
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
PATCH /education/classes/{class-id}/modules/{module-id}
Request headers
Header | Value |
---|---|
Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Content-Type | application/json |
Request body
In the request body, supply the values for relevant fields that should be updated. Existing properties that aren't included in the request body maintain their previous values or are recalculated based on changes to other property values. For best performance, don't include existing values that haven't changed.
Property | Type | Description |
---|---|---|
displayName | String | Name of module. |
description | String | Description of the module. |
Response
If successful, this method returns a 200 OK
response code and an updated educationModule object in the response body.
Example
Request
The following example shows a request.
PATCH https://graph.microsoft.com/beta/education/classes/37d99af7-cfc5-4e3b-8566-f7d40e4a2070/modules/ba8e4215-4fb2-4dba-abe7-a8f2585177d3
Content-type: application/json
{
"displayName": "New_Module5 updated",
"description": "updated for description"
}
Response
The following example shows the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-type: application/json
{
"@odata.context": "https://graph.microsoft.com/$metadata#education/classes('37d99af7-cfc5-4e3b-8566-f7d40e4a2070')/modules/$entity",
"displayName": "New_Module5 updated",
"description": "updated for description",
"resourcesFolderUrl": "https://graph.microsoft.com/v1.0/drives/b!-Ik2sRPLDEWy_bR8l75jfeDcpXQcRKVOmcml10NQLQ1F2UVvTgEnTKi0GO59dbCL/items/01VANVJQ7ODS65Z665DBH3QGZ5UYZQOP2S",
"isPinned": false,
"status": "published",
"createdDateTime": "2023-06-21T17:25:44.1277744Z",
"lastModifiedDateTime": "2023-06-21T18:21:39.8114768Z",
"id": "ba8e4215-4fb2-4dba-abe7-a8f2585177d3",
"createdBy": {
"application": null,
"device": null,
"user": {
"id": "4aa81579-714a-4f46-8a05-605558455fa1",
"displayName": null
}
},
"lastModifiedBy": {
"application": null,
"device": null,
"user": {
"id": "4aa81579-714a-4f46-8a05-605558455fa1",
"displayName": null
}
}
}