Get educationClass
Namespace: microsoft.graph
Retrieve a class from the system. A class is a universal group with a special property that indicates to the system that the group is a class. Group members represent the students; group admins represent the teachers in the class. If you're using the delegated token, the user will only see classes in which they are members.
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) | EduRoster.ReadBasic |
Delegated (personal Microsoft account) | Not supported |
Application | EduRoster.Read.All, EduRoster.ReadWrite.All |
HTTP request
GET /education/classes/{id}
Optional query parameters
You can use $select
to get specific group properties, including those that are not returned by default.
For more information on OData query options, see OData Query Parameters.
Request headers
Header | Value |
---|---|
Authorization | Bearer {token}. Required. |
Request body
Do not supply a request body for this method.
Response
If successful, this method returns a 200 OK
response code and an educationClass object in the response body.
Example
Request
Here is an example of the request.
GET https://graph.microsoft.com/v1.0/education/classes/7e4ec76c-8276-43ef-ba10-9aaa197cb212
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/v1.0/$metadata#education/classes/$entity",
"id": "7e4ec76c-8276-43ef-ba10-9aaa197cb212",
"description": "Leadership 101 training",
"displayName": "Leadership 101",
"mailNickname": "Leadership101"
}
Feedback
Submit and view feedback for