cancel
Showing results for 
Search instead for 
Did you mean: 
dnsBuffaloNY
Contributor
Status: Delivered

Accept.Js works great!  It allows my website to capture Credit Card information without that data ever posting back to my servers.  I don't any PCI Compliance headaches.

 

My suggestion would be to enhance Accept.JS to also allow for ACH payments.  That is, have accept.JS allow for the capture of a Routing and Account Number.  It could look like this:

 

var secureData = {}, authData = {}, bankData = {};
	
	bankData.routingNumber = document.getElementById('ROUTINGNUMBER_ID').value;
	bankData.accountNumber = document.getElementById('ACCOUNTNUMBER_ID').value;

	secureData.bankData = bankData;

	authData.clientKey = '6WrfHGS76gHW3v7btBCE3HuuBukej96Ztfn5R32G5ep42vne7MCWZtAucY';
	authData.apiLoginID = 'my_api_login_id';
	secureData.authData = authData;
	
	Accept.dispatchData(secureData, 'responseHandler');

Here's a related communit post.

 

https://community.developer.authorize.net/t5/Integration-and-Testing/Accept-JS-and-ACH/m-p/55887#M30...

 

Thank you for your consideration!

15 Comments
Aaron
All Star

@dnsBuffaloNY wrote:

Wait, are you saying it's done?  In DEV and PROD?


:)

 

Yes and yes.

dnsBuffaloNY
Contributor

Sweet!  U-Da-Man;   Trying it now.

Aaron
All Star

I need to clarify a bit:

 

An Accept payment nonce that contains bank data can only be used for payment transactions at this time. It can't be used for creating a profile or creating a subscription.

 

This will be fixed, but I have no information on the timeframe for fixing this.

 

I apologize that this particular limitation wasn't made clear in my original announcement.

RichardH
Administrator Administrator
Administrator

Our Accept.js documentation now includes information for submitting eCheck.Net transactions.

 

https://developer.authorize.net/api/reference/features/accept.html#Building_your_Payment_Form

Selvas
Member


I am currently working hard on the source online casinos in Australia and I have been looking for this script for a very long time to optimize the site, thanks for the information.