This endpoint allows querying the grades of a student in a specific course in Toolzz LMS.
--url ' https://kong.api.toolzz.com.br/api/content/score/user/{user_id}/course/{course_id} ' \
--header ' Authorization: Bearer <token> '
Parameter Type Description Required AuthorizationString Access token (“Bearer” must be before the token) Yes
Parameter Type Description Required user_idint User ID (student) whose grades will be queried in the specified course. Yes course_idstring ID of the course for which the grades will be queried. Yes
Key Type Description dataobject Grade information. data.user_idnumber User identifier. data.course_idnumber Course identifier. data.scorenumber Student’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.