Pre Qualify flow (optional)

🚧

This is an optional flow

In general, you can simply share the "Customer sign up URL" found in your merchant dashboard account for customers sign up and pre-qualify for limits which requires no coding. However, if you prefer to have a pop-up modal for customers to pre-qualify for credit limits then you can use this API.

About

The final screen of the pre-qualify results page

The final screen of the pre-qualify results page

This API is intended as an alternative to sending users to the "Customer sign up URL". Instead, this provides in-modal, pre qualify experience similar to the experience shown in V3. The major difference is that you don't need to make any backend calls or provide any customer information. The Slope model will prompt the user to either sign in or create an account to complete the pre_qualify flow.

Live example

You can find a live example of the V4 Pre Qualify flow at https://demo.slopepay.com/account

How to use

See the below example code to implement this on the API

 window.SlopeJs.start({
   publicKey: 'YOUR_API_PUBLIC_KEY',
   flow: 'pre_qualify',
   onSuccess: (resp) => {
   },
   onFailure: (err) => {
   },
   onClose: () => {
   },
 })

The publicKey is your public API Key that is found in your merchant dashboard's developer page