Skip to content

School Unit Progression Report

Endpoint used to retrieve updated course progression data for a specific school unit in Toolzz LMS.

Terminal window
curl --request GET \
--url 'https://kong.api.toolzz.com.br/api/reports/school/{school_id}/percentage?startDate=2025-01-01&endDate=2025-12-31' \
--header 'Authorization: Bearer <token>'
{
"data": {
"current_page": 1,
"data": [
{
"user_id": 1,
"user_name": "<string>",
"user_email": "<string>",
"user_cpf": "<string>",
"course_name": "<string>",
"percentual_usage": 9,
"content_total": 10,
"percentual_progress": "95%"
}
]
}
}

ParameterTypeDescriptionRequired
AuthorizationStringAccess token (“Bearer” must be before the token)Yes
ParameterTypeDescriptionRequired
school_idstringSchool identifier in the system.Yes
ParameterTypeDescriptionRequired
startDatestringStart date of the query range.No
endDatestringEnd date of the query range.No
multiInstbooleanIndicates if the query should consider multiple institutions (expected value: “on”).No
cpfstringCPF of the user to be queried.No
emailstringEmail of the user to be queried.No
updatedAtstringData update date.No

KeyTypeDescription
dataobjectContains the paginated list of users with course progress statistics.
data.current_pagenumberCurrent page of the listing.
data.dataarrayList of user records.
data.data.user_idnumberUnique identifier of the user.
data.data.user_namestringFull name of the user.
data.data.user_emailstringEmail address of the user.
data.data.user_cpfstringCPF of the user (may be empty).
data.data.course_namestringName of the course to which the progress belongs.
data.data.percentual_usagenumberNumber of content items consumed.
data.data.content_totalnumberTotal content items available in the course.
data.data.percentual_progressstringPercentage progress of the course (e.g., “95%”).

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.