Products
Get dealership products
GET
{{base_url}}/v2/products/
Retrieve all available dealership instalments by amount.
Path Parameters
Name
Type
Description
amount*
String
The application amount required from the customer.
api_key*
String
This is supplier specific and provided by BUMPER
Headers
Name
Type
Description
Accept*
application/json
{
"success": true,
"data": {
"products": [
{
"product_name": "four instalment",
"instalments": 4,
"maximum_loan_amount": 3000.0,
"minimum_loan_amount": 60.0,
"deposit_required": true,
"deposit_amount": 0.25
},
{
"product_name": "one sixth",
"instalments": 6,
"maximum_loan_amount": 3000.0,
"minimum_loan_amount": 60.0,
"deposit_required": true,
"deposit_amount": 0.25
},
{
"product_name": "one tenth",
"instalments": 10,
"maximum_loan_amount": 3000.0,
"minimum_loan_amount": 60.0,
"deposit_required": true,
"deposit_amount": 0.25
}
]
}
}
Last updated