Create educationCategory
Article
03/02/2023
2 minutes to read
7 contributors
Feedback
In this article
Namespace: microsoft.graph
Creates a new educationCategory on an educationClass . Only teachers can perform this operation.
Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions .
Permission type
Permissions (from least to most privileged)
Delegated (work or school account)
EduAssignments.ReadWriteBasic, EduAssignments.ReadWrite
Delegated (personal Microsoft account)
Not supported.
Application
Not supported.
HTTP request
POST /education/classes/{id}/assignmentCategories
Header
Value
Authorization
Bearer {token}. Required.
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 is an example of the request.
POST https://graph.microsoft.com/v1.0/education/classes/60eaa744-aa87-4276-b985-1633683119f8/assignmentCategories
Content-type: application/json
{
"displayName": "Quizzes"
}
var graphClient = new GraphServiceClient(requestAdapter);
var requestBody = new EducationCategory
{
DisplayName = "Quizzes",
};
var result = await graphClient.Education.Classes["{educationClass-id}"].AssignmentCategories.PostAsync(requestBody);
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
const options = {
authProvider,
};
const client = Client.init(options);
const educationCategory = {
displayName: 'Quizzes'
};
await client.api('/education/classes/60eaa744-aa87-4276-b985-1633683119f8/assignmentCategories')
.post(educationCategory);
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
GraphServiceClient graphClient = GraphServiceClient.builder().authenticationProvider( authProvider ).buildClient();
EducationCategory educationCategory = new EducationCategory();
educationCategory.displayName = "Quizzes";
graphClient.education().classes("60eaa744-aa87-4276-b985-1633683119f8").assignmentCategories()
.buildRequest()
.post(educationCategory);
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
//THE GO SDK IS IN PREVIEW. NON-PRODUCTION USE ONLY
graphClient := msgraphsdk.NewGraphServiceClientWithCredentials(cred, scopes)
requestBody := graphmodels.NewEducationCategory()
displayName := "Quizzes"
requestBody.SetDisplayName(&displayName)
result, err := graphClient.Education().ClassesById("educationClass-id").AssignmentCategories().Post(context.Background(), requestBody, nil)
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
Import-Module Microsoft.Graph.Education
$params = @{
DisplayName = "Quizzes"
}
New-MgEducationClassAssignmentCategory -EducationClassId $educationClassId -BodyParameter $params
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
<?php
// THIS SNIPPET IS A PREVIEW FOR THE KIOTA BASED SDK. NON-PRODUCTION USE ONLY
$graphServiceClient = new GraphServiceClient($requestAdapter);
$requestBody = new EducationCategory();
$requestBody->setDisplayName('Quizzes');
$requestResult = $graphServiceClient->education()->classesById('educationClass-id')->assignmentCategories()->post($requestBody);
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
Response
The following is an example of 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"
}