Closed prayagupa closed 11 years ago
Well, Creating Transactions from the Vault has the answer for my question.
TransactionRequest encourageTransaction = new TransactionRequest()
.customerId(defaultCreditCard.customerId)
.amount(invoiceToEncourage.subtotal)
After
CreditCardRequest
is processed successfully for acustomerId
withCVV
,cardHolderName
,number
etc, I wantCreditCard
to provideCVV
,number
later. How can I achieve that, so that I can make aTransactionRequest
with already addedCreditCard
?Snippet of my code is :