Installment prices on Home, Search and Product page
As a customer, I am more likely to buy more or better products if I see instalment prices next to product prices on Home page, Search page and Product page
Great way to convert window shoppers to shoppers is to display lowest instalment prices next to products potential customer is browsing.
Implementation guide
Call to our API https://app.leanpay.ro/vendor/installment-plans will return all instalment options for all financial products available to you
Integration recommendation:
- Once per week get latest instalment prices from our API
- Save JSON response to your DB
- Calculate downpayment:
- 0 lei for purchases up to 999.99 lei
- 100 lei for purchases from 1000 lei to 1999.99 lei
- 150 lei for purchases from 2000 lei to 2999.99 lei
- 200 lei for purchases from 3000 lei to 3999.99 lei
- 250 lei for purchases from 3000 lei to 4999.99 lei
- 300 lei for purchases from 5000 lei
- Case product price is 139,15 lei we recomend rounding to 140 lei
- API specification can be found at [ API - vendor/installment-plans] ( https://docs.leanpay.com/povecajte-prodajo/ze-od/instalment-plans/standard/installment-plans )
API response sample
{
"groups": [
{
"groupId": "2ac1010b-2675-4aed-ab92-81b34ac6312f",
"groupName": "ONLINE - REGULAR OFFER",
"vendorProductCode": "2ac1010b-2675-4aed-ab92-81b34ac6312f",
"currencyCode": "RON",
"loanAmounts": [
{
"loanAmount": 50.0,
"possibleInstallments": [
{
"numberOfMonths": 3,
"installmentAmout": 16.86
}
]
},
{
"loanAmount": 51.0,
"possibleInstallments": [
{
"numberOfMonths": 3,
"installmentAmout": 17.20
}
]
},
{
"loanAmount": 2999.0,
"possibleInstallments": [
{
"numberOfMonths": 24,
"installmentAmout": 132.86
}
]
},
{
"loanAmount": 3000.0,
"possibleInstallments": [
{
"numberOfMonths": 12,
"installmentAmout": 252.59
}
]
},
{
"loanAmount": 3000.0,
"possibleInstallments": [
{
"numberOfMonths": 18,
"installmentAmout": 171.29
}
]
},
{
"loanAmount": 3000.0,
"possibleInstallments": [
{
"numberOfMonths": 24,
"installmentAmout": 130.67
}
]
}
]
},