Parameters
JSON body
Request body
application/jsontokenstringRequiredPassword reset token from the email link.
passwordInputstringRequiredNew password.
passwordAgainstringRequiredNew password confirmation (must match passwordInput).
Sets a new password using a reset token received via email.
JSON body
tokenstringRequiredPassword reset token from the email link.
passwordInputstringRequiredNew password.
passwordAgainstringRequiredNew password confirmation (must match passwordInput).
1 status code documented
successbooleanRequiredWhether the password was reset.
{
"success": false
}POST /bff/account/reset-password
curl -X POST "https://api.bizkithub.com/bff/account/reset-password" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"token": "example_token",
"passwordInput": "example_passwordInput",
"passwordAgain": "example_passwordAgain"
}'All BizKitHub public API endpoints require authentication via API key.