curl --request POST \
--url https://api.alpha-1edtech.ai/powerpath/resetAttempt \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"student": "<string>",
"lesson": "<string>"
}
'{
"success": true,
"score": 123
}Resets the attempt for the given PowerPath lesson of a student:
For Assessment Bank lessons, this will keep the user state in the same bank test for the current attempt.
A ‘Lesson’ in this context is a ComponentResource object which has a Resource object associated with it.
curl --request POST \
--url https://api.alpha-1edtech.ai/powerpath/resetAttempt \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"student": "<string>",
"lesson": "<string>"
}
'{
"success": true,
"score": 123
}The access token received from the authorization server in the OAuth 2.0 flow.