Payment Pages

Klump Access via Merchant Dashboard

Klump Access, also known as payment pages, is the easiest way to offer your customers the Buy Now, Pay Later (BNPL) option even without a website.

To use Klump Access, log into your merchant dashboard and select the Klump Access menu on the navigation bar - make sure to change your environment to LIVE, or else every page you create in your test environment will only work for test transactions - and create a page.

Enter a title for the page, a description for the page, and an image and amount to create a Klump Access page. There are two types of amount options: fixed and free-flowing. The fixed amount requires your customer to pay a set amount, whereas the free-flowing amount allows your customer to pay whatever amount they want.

To deactivate a payment page, click the visibility button on the payment page details page.

3118

Klump Access

3360

Klump Access Page

Klump Access via API

If you have an app, you can use an API to generate a Klump Access page for your users. This is useful if you want to offer the BNPL option to your customers without integrating through the Klump JS or using one of the provided plugins and libraries.

curl --location --request GET 'https://api.useklump.com/v1/transactions/:reference/resend-webhook' \
--header 'Content-Type: application/json' \
--header 'klump-secret-key: {{KLUMP_SEC_KEY}}'
-d '{"name": "Jerande's 30th Birthday", "description": "This is a great opportunity to let your hair down.", "currency": "NGN", "is_fixed_amount": false, "is_published": true}'
curl --location --request GET 'https://api.useklump.com/v1/transactions/:reference/resend-webhook' \
--header 'Content-Type: application/json' \
--header 'klump-secret-key: {{KLUMP_SEC_KEY}}'
-d '{"name": "Jerande's 30th Birthday", "description": "This is a great opportunity to let your hair down.", "currency": "NGN", "is_fixed_amount": true, amount: 30000, "is_published": true}'

In the case where the is_fixed_amount is true, you will be required to give an amount not less than N25,000.