Secure Payments API – Password Reset

General

Resetting account passwords is one of the account management options available through the Secure Payments API.

How To

If you need to reset your password, you can do so by sending a POST request to the following endpoint:

POST https://securepayments.loanpro.io//api/password-reset

This will lock your account and send a password confirmation email to the email address included in the request.

Here's a sample payload:

{ 
"email": "YOUREMAIL@email.com"
}

And the same payload as a cURL request:

curl -X POST --header 'Content-Type: application/json' --header 'Accept: application/json' -d '{ \
"email": "YOUREMAIL@email.com" \
}' 'https://securepayments.loanpro.io//api/password-reset'

Unlocking

Once a request has been issued, the account associated with the email address in the request will be locked. You can now Reset and Unlock Your New Password.


How did we do?


Powered by HelpDocs (opens in a new tab)