Skip to content

List Students in Course Package

Endpoint used to retrieve the students enrolled in a specific course package in Toolzz LMS.

Terminal window
curl --request GET \
--url 'https://kong.api.toolzz.com.br/api/plans/{plan_uuid}/users' \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": 1,
"name": "<string>",
"email": "<string>",
"status": "active"
}
]
}

ParameterTypeDescriptionRequired
AuthorizationStringAccess token (“Bearer” must be before the token)Yes
ParameterTypeDescriptionRequired
plan_uuidstringIdentifier of the target package. Must be provided in the URL in place of {plan_uuid}.Yes

KeyTypeDescription
dataarrayList of students enrolled in the package.
data.idnumberUnique identifier of the student.
data.namestringName of the student.
data.emailstringEmail address of the student.
data.statusstringStudent enrollment status.

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.