Is there a method to retrieve the current grade level of a student via the Google Classroom API? (e.g student is in grade 5)
Asked
Active
Viewed 69 times
1 Answers
0
Not possible. If you will check the Classroom API REST Resources. courses.students.get method will return an instance of Student which contains the following fields:
Wherein, UserProfile object only contains the following information: id
, name
, emailAddress
, photoUrl
, permissions
and verifiedTeacher

Ron M
- 5,791
- 1
- 4
- 16
-
That is what I thought looking at the documentation, thanks for confirming Ron. – Majid Jul 16 '21 at 01:30