Endpoint used to request external authentication (SSO) to obtain an access token for a student in Toolzz LMS.
--url ' https://kong.api.toolzz.com.br/api/auth/sso ' \
--header ' Authorization: Bearer <token> ' \
--header ' Content-Type: application/json ' \
"email": "student@example.com",
"institution_code": "myinstitution"
"redirect_url" : " <string> "
Parameter Type Description Required AuthorizationString Access token (“Bearer” must be before the token) Yes
Parameter Type Description Required emailstring Email address of the user requesting login. Yes institution_codestring The institution subdomain (institution name in the URL ). Yes
Parameter Type Description Required idstring ID of the content to which the user will be redirected. If null, the user is redirected to the Home page. No typestring Type of content related to the ID. 1: Free Course. 2: Exclusive Course. 3: Trail. 4: Course Package. 5: Live. No
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.