EduAssignments.ReadBasic.All
Allows the app to read all class assignments without grades for all users without a signed-in user.
In short
EduAssignments.ReadBasic.All is an application-only permission in the Microsoft Graph API, grouped under the EduAssignments category. Allows the app to read all class assignments without grades for all users without a signed-in user. It grants read-only access to resources. Application permissions always require admin consent.
Permission Details
Read all class assignments without grades
Allows the app to read all class assignments without grades for all users without a signed-in user.
6e0a958b-b7fc-4348-b7c4-a6ab9fd3dd0e
Properties
Properties is shown from stable Microsoft Graph v1.0 metadata.
| Property | Type | Description |
|---|---|---|
content |
Stream |
The content stream |
contentUrl |
String (url) |
The URL for downloading the content |
assignmentCategories |
educationCategory collection |
All categories associated with this class. Nullable. |
assignmentDefaults |
object |
Specifies class-level defaults respected by new assignments created in the class. |
assignments |
educationAssignment collection |
All assignments associated with this class. Nullable. |
assignmentSettings |
object |
Specifies class-level assignments settings. |
classCode |
stringNullable |
Class code used by the school to identify the class. |
course |
object |
|
createdBy |
object |
Entity who created the class |
description |
stringNullable |
Description of the class. |
displayName |
string |
Name of the class. |
externalId |
stringNullable |
ID of the class from the syncing system. |
externalName |
stringNullable |
Name of the class in the syncing system. |
externalSource |
object |
How this class was created. The possible values are: sis, manual. |
externalSourceDetail |
stringNullable |
The name of the external source this resource was generated from. |
Showing 15 of 24 properties.
JSON Representation
JSON representation is shown from stable Microsoft Graph v1.0 metadata.
{
"content": "String",
"contentUrl": {
"@type": "String (url)",
"id": "00000000-0000-0000-0000-000000000000"
},
"assignmentCategories": [
{
"@type": "educationCategory",
"id": "00000000-0000-0000-0000-000000000000"
}
],
"assignmentDefaults": {
"sample": "value"
},
"assignments": [
{
"@type": "educationAssignment",
"id": "00000000-0000-0000-0000-000000000000"
}
],
"assignmentSettings": {
"sample": "value"
},
"classCode": "String",
"course": {
"sample": "value"
},
"createdBy": {
"sample": "value"
},
"description": "String",
"displayName": "String",
"externalId": "String",
"externalName": "String",
"externalSource": {
"sample": "value"
},
"externalSourceDetail": "String",
"grade": "String",
"group": {
"sample": "value"
},
"id": "String",
"mailNickname": "String",
"members": [
{
"@type": "educationUser",
"id": "00000000-0000-0000-0000-000000000000"
}
]
}
Relationships
Relationships is shown from stable Microsoft Graph v1.0 metadata.
| Relationship | Type | Description |
|---|---|---|
assignmentCategories |
educationCategory collection |
All categories associated with this class. Nullable. |
assignments |
educationAssignment collection |
All assignments associated with this class. Nullable. |
members |
educationUser collection |
All users in the class. Nullable. |
modules |
educationModule collection |
All modules in the class. Nullable. |
schools |
educationSchool collection |
All schools that this class is associated with. Nullable. |
teachers |
educationUser collection |
All teachers in the class. Nullable. |
Graph Methods
Microsoft Graph v1.0 endpoints are mapped directly from refreshed Microsoft Learn permissions tables.
Microsoft Graph beta endpoints are mapped directly from refreshed Microsoft Learn permissions tables.
Microsoft Graph PowerShell v1.0 commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.
Microsoft Graph PowerShell beta commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.
Code Examples
// Code snippets are only available for the latest version. Current version is 5.x
// 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}"].Assignments.Delta.GetAsDeltaGetResponseAsync((requestConfiguration) =>
{
requestConfiguration.QueryParameters.Top = 2;
});
const options = {
authProvider,
};
const client = Client.init(options);
let delta = await client.api('/education/classes/72a7baec-c3e9-4213-a850-f62de0adad5f/assignments/delta')
.top(2)
.get();
Import-Module Microsoft.Graph.Education
Get-MgEducationClassAssignmentDelta -EducationClassId $educationClassId -Top 2
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph import GraphServiceClient
from msgraph.generated.education.classes.item.assignments.delta.delta_request_builder import DeltaRequestBuilder
from kiota_abstractions.base_request_configuration import RequestConfiguration
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
query_params = DeltaRequestBuilder.DeltaRequestBuilderGetQueryParameters(
top = 2,
)
request_configuration = RequestConfiguration(
query_parameters = query_params,
)
result = await graph_client.education.classes.by_education_class_id('educationClass-id').assignments.delta.get(request_configuration = request_configuration)
App Registration
Navigate to Azure Portal
Go to App registrations in Microsoft Entra admin center
Add API Permission
Select your app → API permissions → Add a permission → Microsoft Graph
Select Permission Type
Choose Application permissions and search for EduAssignments.ReadBasic.All
Grant Admin Consent
Application permissions always require admin consent.
Frequently asked questions
What is the EduAssignments.ReadBasic.All Microsoft Graph permission?
EduAssignments.ReadBasic.All is an application-only permission in the Microsoft Graph API, grouped under the EduAssignments category. Allows the app to read all class assignments without grades for all users without a signed-in user. It grants read-only access to resources. Application permissions always require admin consent. It is mapped to the Microsoft Graph resource resource type. 46 documented Microsoft Graph REST methods require it. 40 Microsoft Graph PowerShell commands are documented for it.
Is EduAssignments.ReadBasic.All an application or a delegated permission?
EduAssignments.ReadBasic.All is an application permission only. It grants app-only access without a signed-in user and always requires admin consent.
Does EduAssignments.ReadBasic.All require admin consent?
Application permissions always require admin consent.
What is the permission ID (GUID) for EduAssignments.ReadBasic.All?
For EduAssignments.ReadBasic.All, the application (app role) ID is 6e0a958b-b7fc-4348-b7c4-a6ab9fd3dd0e. These are the real Microsoft Graph identifiers and can be used directly in an app registration manifest.