Endpoint
Request body
The email address associated with your Dashboard account.
The 6-character one-time password sent to your email address. OTPs are single-use and expire after a short window.
The new password you want to set for your account.
Complete the password reset flow using the OTP sent to your email. Submit your email, OTP, and new password to update your Dashboard account credentials.
POST https://baasapi.payrepmfb.com/api/v1/auth/web/reset_password
curl --request POST \
--url https://baasapi.payrepmfb.com/api/v1/auth/web/reset_password \
--header 'Content-Type: application/json' \
--data '{
"email": "admin@yourbusiness.com",
"otp": "123456",
"new_password": "new-secure-password"
}'
{
"status": true,
"response_code": "00",
"message": "Password reset successful",
"data": {}
}