Products

Get dealership products

GET {{base_url}}/v2/products/

Retrieve all available dealership instalments by amount.

Path Parameters

NameTypeDescription

amount*

String

The application amount required from the customer.

api_key*

String

This is supplier specific and provided by BUMPER

signature*

String

Hash created through all the parameters of this request body

Headers

NameTypeDescription

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