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

fdmshealthcare.AVSAndCVVOnly([callback])

Callback

The 'callback' parameter specifies a function which will be called when the operation completes (or an error is encountered). If the 'callback' parameter is not specified, then the method will block and will not return until the operation completes (or an error is encountered).

The callback for this method is defined as:

function(err){ }

'err' is the error that occurred. If there was no error, then 'err' is 'null'.

'err' has 2 properties which hold detailed information:

err.code
err.message

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 CardEntryDataSource must be set to a manual entry value for this transaction.


	FDMSHealthCare.CardEntryDataSource = edsManualEntryTrack1Capable
  FDMSHealthCare.CardNumber = "4444333322221111"
  FDMSHealthCare.CardExpMonth = 9
  FDMSHealthCare.CardExpYear = 2015
  FDMSHealthCare.CardCVVData = "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