Financing
Learn how to get financing information for a specific product.
Getting the financing information for a product
curl --location --request GET 'https://api.digitalriver.com/v1/shoppers/me/product/{productId}/financing' \
--header 'authorization: bearer {Your_Access_Token}\
...{
"uri": "https://api.digitalriver.com/v1/shoppers/me/products/73248500/financing",
"financingTerm": [
{
"id": 1324500,
"totalRepayable": {
"currency": "USD",
"value": "19.99"
},
"formattedTotalRepayable": "$8.92",
"creditAmount": {
"currency": "USD",
"value": "19.99"
},
"formattedCreditAmount": "$7.20",
"monthlyPaymentAmount": {
"currency": "USD",
"value": "19.99"
},
"formattedMonthlyPaymentAmount": "$0.08",
"durationInMonths": 120,
"interestRatePct": 0.04500000178813934,
"interestRatePctForDisplay": 4.5,
"effectiveInterestRate": 0.04500000178813934,
"effectiveInterestRateForDisplay": 4.5,
"description": "4.5% for 120 months"
}
]
}Last updated