Tokenized Card Payment Integration
To collect payments using cards tokenized outside the PayU platform:
- Pass the parameters similar to the following code block:
paymentParam.cardTokenType = "1"
paymentParam.additionalInfo = AdditionalInfo(last4Digits: "1234", tavv: "1234", trid: "1234", tokenRefNo: "1234")
self.paymentParam.cardTokenType = @"1";
self.paymentParam.additionalInfo = [[AdditionalInfo alloc] initWithLast4Digits:@"1234" tavv:@"1234" trid:@"1234" tokenRefNo:@"1234"];
- Get the request by using the
createRequestWithPaymentParam
.
Updated 2 months ago