Skip to content

Latest commit

 

History

History
128 lines (100 loc) · 4.79 KB

educationclass-post-category.md

File metadata and controls

128 lines (100 loc) · 4.79 KB
title description ms.localizationpriority author ms.subservice doc_type
Create educationCategory
Create a new educationCategory on an educationClass.
medium
cristobal-buenrostro
education
apiPageType

Create educationCategory

Namespace: microsoft.graph

Create a new educationCategory on an educationClass. Only teachers can perform this operation.

[!INCLUDE national-cloud-support]

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.

[!INCLUDE permissions-table]

HTTP request

POST /education/classes/{id}/assignmentCategories

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 a JSON representation of an educationCategory object.

Response

If successful, this method returns a 201 Created response code and an educationCategory object in the response body.

Example

Request

The following example shows a request.

POST https://graph.microsoft.com/v1.0/education/classes/60eaa744-aa87-4276-b985-1633683119f8/assignmentCategories
Content-type: application/json

{ 
  "displayName": "Quizzes"
}

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]


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/v1.0/$metadata#education/classes('60eaa744-aa87-4276-b985-1633683119f8')/assignmentCategories/$entity",
    "displayName": "Quizzes",
    "id": "ec98f158-341d-4fea-9f8c-14a250d489ac"
}