curl --request POST \
--url https://api.alpha-1edtech.ai/powerpath/placement/resetUserPlacement \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"student": "<string>",
"subject": "Reading"
}
'{
"success": true,
"placementResultsDeleted": 123,
"onboardingReset": true
}Resets a user’s placement progress for a specific subject by:
This operation is restricted to administrators only and cannot be undone.
curl --request POST \
--url https://api.alpha-1edtech.ai/powerpath/placement/resetUserPlacement \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"student": "<string>",
"subject": "Reading"
}
'{
"success": true,
"placementResultsDeleted": 123,
"onboardingReset": true
}The access token received from the authorization server in the OAuth 2.0 flow.