Pria UI now available in Dark mode !
cURL
curl --request POST \ --url http://localhost:3000/api/auth/checkResetCode \ --header 'Content-Type: application/json' \ --data ' { "email": "[email protected]", "resetCode": "ABC123" } '
{ "success": true, "valid": true }
Validates whether the provided reset code is valid for the user
User email address
"[email protected]"
Reset code received via email
"ABC123"
Reset code validation result
true
Whether the reset code is valid
Was this page helpful?