AVSAndCVVOnly Method
Performs an AVS/CVV only check using the specified Card data.
Syntax
public void AVSAndCVVOnly();
Remarks
This methods allows you to perform an AVS/CVV only request for verification purposes using the specified Card data. This does not authorize any funds on the card and only performs an AVS and CVV check. The TransactionAmount must be 0 for this transaction.
Note: For Retail transactions the EntryDataSource must be set to a manual entry value for this transaction.
FDMSRetail.Card.EntryDataSource = EntryDataSources.edsManualEntryTrack1Capable; FDMSRetail.Card.Number = "4444333322221111"; FDMSRetail.Card.ExpMonth = 9; FDMSRetail.Card.ExpYear = 2015; FDMSRetail.Card.CVVData = "999"; FDMSRetail.CustomerAddress = "123 Nowhere Ln"; FDMSRetail.CustomerZip = "90210"; FDMSRetail.TransactionAmount = "0"; FDMSRetail.AVSAndCVVOnly();