Skip to main content

Klap logo

Klap (formerly Multicaja) is an alternative payment method exclusive to Chile, which we offer through Flow. This payment method allows the user to generate a payment coupon with which to complete the payment.

Integration via redirection

To integrate by redirection, the user must be present at the time of payment, which must be processed through a browser. First we must generate a payment order, indicating email.

  "extra_data": {
"profile": {
"first_name": " ",
"last_name": " ",
"email": "test@gmail.com",
}
}

As service identifier, the service_uuid of the FLOW service you have activated in your Paylands Backend → Manage → Payment Services → Listing must be indicated.

Once the order is generated, the user must be redirected to the payment screen indicating the token of the order and in the query, the name of the APM:

We construct the redirection URL by replacing the token of the order returned from the previous call.

https://api.paylands.com/v1/sandbox/payment/process/{token}?apm=KLAP

Once the user is redirected to this screen, where a generated coupon will be displayed with which the user can make the payment at a branch. When you complete the payment, you will be redirected back to the OK or KO URL, depending on the payment result.

Testing

For more information on how to test this payment method on each of your vendors, visit the FLOW documentation.

Custom fields

Optionally, within the extra_data you can include the payment_reason field, which allows you to indicate a description of the payment.

  "extra_data": {
"payment": {
"payment_reason": "Payment description"
}
}