Endpoint
Authorization: Bearer <access_token>
Request body
Your current Dashboard account password.
The new password you want to set for your account.
Repeat the new password. Must exactly match
new_password.Change your Dashboard account password. Requires your current password for verification. Changes take effect immediately on all sessions.
POST https://baasapi.payrepmfb.com/api/v1/auth/web/change_password
Authorization: Bearer <access_token>
new_password.curl --request POST \
--url https://baasapi.payrepmfb.com/api/v1/auth/web/change_password \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...' \
--header 'Content-Type: application/json' \
--data '{
"old_password": "current-secure-password",
"new_password": "new-secure-password",
"confirm_password": "new-secure-password"
}'
{
"status": true,
"response_code": "00",
"message": "Password changed successfully",
"data": {}
}