Skip to content

Institution Progression Report

Endpoint used to retrieve updated course progression data for your institution in Toolzz LMS.

Terminal window
curl --request GET \
--url 'https://kong.api.toolzz.com.br/api/reports/institution/percentage' \
--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": 5,
"content_total": 10,
"percentual_progress": "68%"
}
]
}
}

ParameterTypeDescriptionRequired
AuthorizationStringAccess token (“Bearer” must be before the token)Yes

KeyTypeDescription
dataobjectContains the paginated listing of users with course progress.
data.current_pagenumberCurrent page of the listing.
data.dataarrayList of users and their progress data.
data.data.user_idnumberUnique identifier of the user.
data.data.user_namestringName of the user.
data.data.user_emailstringEmail address of the user.
data.data.user_cpfstringCPF of the user (may be blank).
data.data.course_namestringName of the course associated with the progress.
data.data.percentual_usagenumberNumber of content items consumed.
data.data.content_totalnumberTotal content items in the course.
data.data.percentual_progressstringPercentage progress of the course (e.g., “68%”).

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.