This endpoint allows querying the grades of a student in several courses in Toolzz LMS.
--url ' https://kong.api.toolzz.com.br/api/content/score/user/{user_id}?ids=1,2,3 ' \
--header ' Authorization: Bearer <token> '
Parameter Type Description Required AuthorizationString Access token (“Bearer” must be before the token) Yes
Parameter Type Description Required user_idstring User ID (student) whose grades will be queried in the specified courses. Yes
Parameter Type Description Required idsint Array of course IDs for which grades will be queried. IDs must be separated by comma . No
Note: For this endpoint to work correctly, the activity scoring system must be configured in “Weighted Average” mode.
Key Type Description dataarray List of grades. 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.