BoxPay Flutter SDK enables swift creation of a payment process within your Flutter application. We offer robust and adaptable UI components ready for immediate use, allowing you to effortlessly accept payments from your shoppers.
To begin integrating with the BoxPay Checkout, the initial step is to register and setup your BoxPay account.
This outlines the typical workflow for integrating a BoxPay Flutter checkout SDK –
- The shopper taps on the Buy/Pay button on the Merchant App.
- The Merchant Server processes the request and initiates a checkout session through the Create Checkout Session API.
- The Merchant Server receives the BoxPay Checkout token in the response and returns it back to Merchant App.
- Merchant App initiates the BoxPay payment flow by invoking Checkout SDK. Please refer to the Flutter Checkout SDK Integration Steps section for more details around it.
- The shopper completes the payment on the BoxPay Payment Sheet.
- After payment, BoxPay calls the result callback method with the payment status.
- Depending on the payment status received, the Merchant App redirects the customer to either the Order Confirmation page, or to the payment failed/canceled page.
Flutter Checkout SDK Integration Steps
Add SDK dependency
Next step is to add the SDK dependency in your pubspec.yaml file to access the SDK classes in your App –
dependencies:
// ...
// Boxpay Flutter Checkout SDK
boxpay_checkout_flutter_sdk: ^1.0.8
Initiate the SDK payment flow
In order to initiate the payment flow, you need to create a checkout session from your server endpoint. Additionally, you need to pass the payment result callback function to get notified when the payment is either successful or cancelled by the user. In case of failures, we prompt user to retry in the BoxPay payment sheet itself.
Finally, you can initiate the payments flow using the SDK classes as shown below –
void initiatePayment() {
val checkoutToken = // Call your server API that will in-turn call the BoxPay create checkout session api to get the checkout token;
val shopperToken = ""//From the same api call in payload response shopper_token will be received
BoxPayCheckout boxPayCheckout = BoxPayCheckout(
context: context,
token: tokenFetched,
onPaymentResult: onPaymentResult,
shopperToken: shopperToken,
configurationOptions: {
ConfigurationOptions.enableSandboxEnv: true, // for sandbox env, pass its value as true as shown -
ConfigurationOptions.showUpiQrOnLoad: false, // this is for QR related changes, to show QR as the checkout loads send its value as true as shown
},
);
boxPayCheckout.display();
}
void onPaymentResult(PaymentResultObject status) {
if (result.status == "Success") {
// Take further steps after Success of payment
// ...
// redirect to success screen
} else{
// Handle payment cancellation
}
}
PaymentResultObject model
Field Name | Description |
---|---|
status | Provides the status of the payment. For more details, please refer to Verifying the payment status section. |
transactionId | Provides BoxPay transaction id. Please note that transactionId will only be available if shopper clicks on Pay Now button on BoxPay checkout. In other words, it will NOT be available for NoAction status |
Verifying the payment status
Once you get the PaymentResultObject in your callback function, you can verify/handle the status as below:
Status | Description |
---|---|
Success | Payment was received successfully. You can proceed to order fulfilment. It is equivalent to Approved status received in Operation Inquiry API response. |
NoAction | Shopper didn’t attempt the payment at all. No transactionId will be received in this case. |
RequiresAction | Shopper initiated the payment but didn’t complete the payment by entering the OTP, scanning QR code, approving collecting request etc. based on the chosen payment method. |
Processing | Shopper completed the payment but PSP didn’t provide the approval confirmation. It may be due to additional risk checks or merchant account issues. You should not proceed to order fulfilment and rather wait for the terminal status(Approved or Failed/Rejected) via webhooks. It is equivalent to Posted status received in Operation Inquiry API response. |
Failed | Shopper attempted the payment but it was failed. Shopper may have made multiple attempts as we prompt used for retries. You will be provided with latest transactionId. It is equivalent to Failed and Rejected status received in Operation Inquiry API response. |
Expired | SDK session was expired as user was on SDK screens for longer than the session expiry. |
Getting the payment details using Operation Inquiry endpoint
If you need to get additional details, you can invoke BoxPay Operation Inquiry API from your server side component using the transactionId and operationId (with same value as transactionId) received in PaymentResultObject as you must NOT store the BoxPay API key in the Flutter App.