Direct Payment Integrator V6 - Online Help
Direct Payment Integrator V6
Questions / Feedback?

AVSAndCVVOnly Method

Performs an AVS/CVV only check using the specified Card data.

Syntax

[VB.NET]
Public Sub AVSAndCVVOnly()
[C#]
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.


	FDMSHealthCare.Card.EntryDataSource = EntryDataSources.edsManualEntryTrack1Capable;
  FDMSHealthCare.Card.Number = "4444333322221111";
  FDMSHealthCare.Card.ExpMonth = 9;
  FDMSHealthCare.Card.ExpYear = 2015;
  FDMSHealthCare.Card.CVVData = "999";
  
  FDMSHealthCare.CustomerAddress = "123 Nowhere Ln";
  FDMSHealthCare.CustomerZip = "90210";
  
  FDMSHealthCare.TransactionAmount = "0";
      
  FDMSHealthCare.AVSAndCVVOnly();

 
 
Copyright (c) 2017 /n software inc. - All rights reserved.
Build 6.0.6240.0