Get scores by grading period

Jump to solution
113232683610066
Community Member

I am trying to get get grades by grading period in course using api. I can not find an api call to do it.
is there any single or combination of api calls to get grades by grading_periods ?


Labels (2)
1 Solution
DanielLim
Community Explorer

I'm trying to do something similar. Have you tried the course enrollments API endpoint? By default it will return grades for the entire course. If you add the grading_period_id parameter you can get grades for a specific grading period.

/api/v1/courses/{course_id}/enrollments?type[]=StudentEnrollment&grading_period_id={id}

 

View solution in original post