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.si/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 EUR for purchases up to 999.99 EUR
- 100 EUR for purchases from 1000 EUR to 1999.99 EUR
- 150 EUR for purchases from 2000 EUR to 2999.99 EUR
- 200 EUR for purchases from 3000 EUR to 3999.99 EUR
- 250 EUR for purchases from 3000 EUR to 4999.99 EUR
- 300 EUR for purchases from 5000 EUR
- Case product price is 139,15€ we recomend rounding to 140€
- 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": "SPLET - REDNA PONUDBA",
"vendorProductCode": "2ac1010b-2675-4aed-ab92-81b34ac6312f",
"currencyCode": "EUR",
"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
}
]
}
]
},