Bumper API Documentation
  • BUMPER API Documentation
  • Reference
    • Payment Solutions
      • PayByLink
        • PayLater
          • Start Payment
            • Example Request
          • Products
          • Status
          • Update
            • Example Request
          • Cancel
            • Example Request
        • PayNow
          • Start Payment
            • Example Request
          • Status
          • Update
            • Example Request
          • Cancel
            • Example Request
          • Refund
            • Example Request
      • PayInStore
        • Start Payment
          • Example Request
        • Status
        • Update
          • Example Request
        • Cancel
          • Example Request
        • Refund
          • Example Request
  • Webhooks
  • Authentication
  • Redirect Flow
  • Redirection
  • Tracking & Impressions
  • Test Environment
  • Best Practice
  • Calculator iFrame
  • FAQ
  • Changelog
Powered by GitBook
On this page
  1. Reference
  2. Payment Solutions
  3. PayByLink
  4. PayLater

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

signature*

String

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
            }
        ]
    }
}

PreviousExample RequestNextStatus

Last updated 1 year ago

created through all the parameters of this request body

Hash