TwidPay BNPL Integration - iOS Core SDK
To pay using TwidPay, perform the following steps.
- Create the post data with
CASH_CARD_TWID
:
self.paymentParamForPassing.bankCode = CASH_CARD_TWID;//BankCode
paymentParamForPassing.bankCode = CASH_CARD_TWID //BankCode
- Get the Twid customer hash in the
field5
param of PayuResponse, which can be used in the next transactions to skip authentication.
self.paymentParamForPassing.twidCustomerHash = @"Twid customer hash";
paymentParamForPassing.twidCustomerHash = "Twid customer hash"
Updated 2 months ago