Endpoint used to retrieve the students enrolled in a specific course package in Toolzz LMS.
--url ' https://kong.api.toolzz.com.br/api/plans/{plan_uuid}/users ' \
--header ' Authorization: Bearer <token> '
Parameter Type Description Required AuthorizationString Access token (“Bearer” must be before the token) Yes
Parameter Type Description Required plan_uuidstring Identifier of the target package. Must be provided in the URL in place of {plan_uuid}. Yes
Key Type Description dataarray List of students enrolled in the package. data.idnumber Unique identifier of the student. data.namestring Name of the student. data.emailstring Email address of the student. data.statusstring Student 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.