Integration
Integration with the Native OTP Assist mobile SDK in 4 steps:
Include the SDK in your application.
Set up the payment hash and postdata
Initiate the payment.
Verify the transaction.
Watch the complete integration video of PayU OTP Assist.
Include the SDK in your app build.gradle
Compatibility
Min SDK Version: 21
Compile SDK Version: 30
Generate Payment Hash
Refer this document: Generate Hash
Every transaction (payment or non-payment) needs a hash by the merchant before sending the transaction details to PayU. This is required for PayU to validate the authenticity of the transaction. This should be done on your server.
Payment Post Data
Use Core Sdk library to generate payment postdata.
Initiate Payment
Initialize the Native OTP Assist SDK by providing the PayUOtpAssistConfig object having postdata and reference to the PayUOtpAssistCallback to listen to the SDK events.
Make sure to add internet permission in your manifest file.
We fetch the OTP via RECEIVE_SMS if RECEIVE_SMS permission granted, otherwise, fetch the OTP using Google Consent API. To understand the flow, refer to this page.
Callbacks
List of the callback function provided by PayUOtpAssistCallback class:
fun onPaymentSuccess(merchantResponse: String?, payUResponse: String?)- Called when payment succeeds. merchantResponse:
fun onPaymentFailure(merchantResponse: String?, payUResponse: String?)- Called when payment fails.
fun onError(errorCode: String?, errorMessage: String?)- Called when we got some error where,
errorCode : Error Code
errorMessage : Error Description
fun shouldHandleFallback(payUAcsRequest: PayUAcsRequest) : Boolean - It's an optional callback, override when you want to handle the Bank page redirection flow. You just need to change the return value to false. You can also open CustomeBrowser in fallback scenarios. Below is the code snippet to open the CustomBrowser.
You will get PayUAcsRequest on shouldHandleFallback() callback. whether you will get issuerUrl and issuerPostData or acsTemplate on PayUAcsRequest acsTemplate is the Html string that you need to load to the Webview.
Error codes and their description.
Verify the transaction through Webhooks or polling
Once you get the response from SDK, make sure to confirm it with the PayU server. It is recommended to implement the PayU Webhook or backend verify call from your backend.
Implementation of PayU WebHook
Webhook is a server-to-server callback. Once this feature is activated for merchants, PayU would send an S2S response, in addition to SDK callback, to the merchant. It is recommended for the merchant to process the transaction order status – based upon the S2S response and not via the Browser Redirection/SDK callback response to ensure optimum translation outcomes.
Refer to this document, for Webhook implementation.
There is another option to verify payment through polling, the transaction status after the SDK callback from your backend.
Last updated