Skip to content

List Student Grades by Course

This endpoint allows querying the grades of a student in a specific course in Toolzz LMS.

Terminal window
curl --request GET \
--url 'https://kong.api.toolzz.com.br/api/content/score/user/{user_id}/course/{course_id}' \
--header 'Authorization: Bearer <token>'
{
"data": {
"user_id": 123,
"course_id": 456,
"score": 95
}
}

ParameterTypeDescriptionRequired
AuthorizationStringAccess token (“Bearer” must be before the token)Yes
ParameterTypeDescriptionRequired
user_idintUser ID (student) whose grades will be queried in the specified course.Yes
course_idstringID of the course for which the grades will be queried.Yes

KeyTypeDescription
dataobjectGrade information.
data.user_idnumberUser identifier.
data.course_idnumberCourse identifier.
data.scorenumberStudent’s score in the course.

To access this endpoint, it is necessary to send a valid access token through the authorization header (Authorization) of the request. Additionally, the API is protected by other security measures to safeguard user data.