更新 educationClass

命名空间:microsoft.graph

更新 educationClass 对象 的属性。

权限

要调用此 API,需要以下权限之一。要了解详细信息,包括如何选择权限的信息,请参阅权限

权限类型 权限(从最低特权到最高特权)
委派(工作或学校帐户) 不支持。
委派(个人 Microsoft 帐户) 不支持。
应用程序 EduRoster.ReadWrite.All

HTTP 请求

PATCH /education/classes/{id}

请求标头

标头
Authorization Bearer {token}。必需。
Content-Type application/json

请求正文

在请求正文中,提供应更新的相关字段的值。 请求正文中不包括的现有属性将保留其以前的值,或根据对其他属性值的更改重新计算。 为了获得最佳性能,请勿加入尚未更改的现有值。

属性 类型 说明
displayName String 课程名称。
mailNickname String 向所有成员发送电子邮件的邮件名称(如果已启用)。
说明 String 课程说明。
createdBy identitySet 创建了课程的实体
classCode String 学校用于标识课程的课程代码。
externalId String 来自同步系统的课程 ID。
externalSource educationExternalSource 此课程的创建方式。 可能的值包括: sismanual
externalSourceDetail String 生成此资源的外部源的名称。
grade String 课程的年级。
term educationTerm 此课程的学期。

响应

如果成功,此方法会在响应正文中返回 200 OK 响应代码和更新的 educationClass 对象。

示例

请求

下面展示了示例请求。

PATCH https://graph.microsoft.com/v1.0/education/classes/{class-id}
Content-type: application/json

{
  "description": "History - World History 1",
  "displayName": "World History Level 1",
}
响应

下面展示了示例响应。

注意: 为了提高可读性,可能缩短了此处显示的响应对象。

HTTP/1.1 200 OK
Content-Type: application/json

{
  "@odata.type": "#microsoft.graph.educationClass",
  "id": "64ef8ce5-8ce5-64ef-e58c-ef64e58cef64",
  "displayName": "String",
  "mailNickname": "String",
  "description": "String",
  "createdBy": {
    "@odata.type": "microsoft.graph.identitySet"
  },
  "classCode": "String",
  "externalName": "String",
  "externalId": "String",
  "externalSource": "String",
  "externalSourceDetail": "String",
  "grade": "String",
  "term": {
    "@odata.type": "microsoft.graph.educationTerm"
  }
}