Skip to content

Remove Student from Course Package

Endpoint used to remove a user from a specific course package in Toolzz LMS.

Terminal window
curl --request DELETE \
--url 'https://kong.api.toolzz.com.br/api/plans/{plan_uuid}' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"email": "student@example.com"
}'
{
"success": true,
"message": "Student removed from package successfully"
}

ParameterTypeDescriptionRequired
AuthorizationStringAccess token (“Bearer” must be before the token)Yes
ParameterTypeDescriptionRequired
plan_uuidstringIdentifier of the target package.Yes
ParameterTypeDescriptionRequired
emailstringEmail of the student to be removed.Yes

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.