<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: echeck integration in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/echeck-integration/m-p/1353#M1163</link>
    <description>&lt;P&gt;Maybe this will be easier for you to use. Download the &lt;A target="_self" rel="nofollow" href="http://www.johnconde.net/files/AuthnetAIM.class.phps"&gt;Authnet PHP Class&lt;/A&gt; from &lt;A target="_self" rel="nofollow" href="http://www.johnconde.net/blog/tutorial-integrating-the-authorizenet-aim-api-with-php/"&gt;this tutorial&lt;/A&gt; and save it as AuthnetAIM.class.php. Here's sample code you would need to use it to process eChecks:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;$total&amp;nbsp;&amp;nbsp;&amp;nbsp; = $_POST['total'];&lt;BR /&gt;$routing&amp;nbsp; = $_POST['routing'];&lt;BR /&gt;$account&amp;nbsp; = $_POST['acctnumber'];&lt;BR /&gt;$bankname = $_POST['bankname'];&lt;BR /&gt;$acctname = $_POST['acctname'];&lt;BR /&gt;switch ($_POST['accttype'])&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; case 'Personal Checking':&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $accttype = 'checking';&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $echecktype = 'PPD';&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; break;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; case 'Business Checking':&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $accttype = 'businessChecking';&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $echecktype = 'CCD';&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; break;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; case 'Savings':&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $accttype = 'savings';&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $echecktype = 'PPD';&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;require_once('AuthnetAIM.class.php');&lt;BR /&gt;$payment = new AuthnetAIM();&lt;BR /&gt;$payment-&amp;gt;setEcheck($total, $routing, $account, $accttype, $bankname, $acctname, $echecktype);&lt;BR /&gt;$payment-&amp;gt;process();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You'll notice you'll need to create a form field that lets users choose what checking account type they are using called 'accttype' and then use PHP to use what they choose to set two of the parameters sent to Authnet to process the transaction. Also be sure to do proper data validation.&lt;/P&gt;</description>
    <pubDate>Sun, 03 Jan 2010 20:54:52 GMT</pubDate>
    <dc:creator>stymiee</dc:creator>
    <dc:date>2010-01-03T20:54:52Z</dc:date>
    <item>
      <title>echeck integration</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/echeck-integration/m-p/1330#M1140</link>
      <description>&lt;P&gt;Can you please provide me the sample code for doing payment using echeck??its very urgent..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 30 Dec 2009 11:40:20 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/echeck-integration/m-p/1330#M1140</guid>
      <dc:creator>minal_adit</dc:creator>
      <dc:date>2009-12-30T11:40:20Z</dc:date>
    </item>
    <item>
      <title>Re: echeck integration</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/echeck-integration/m-p/1346#M1156</link>
      <description>&lt;P&gt;You can use the &lt;A target="_blank" rel="nofollow" href="http://developer.authorize.net/samplecode/"&gt;sample code&lt;/A&gt; provided for the &lt;A target="_blank" rel="nofollow" href="http://developer.authorize.net/api/aim/"&gt;Advanced Integration Method (AIM)&lt;/A&gt; to process AIM transactions which will also allow you to process echeck transactions. You just need to change a few of the parameters.&lt;/P&gt;</description>
      <pubDate>Sun, 03 Jan 2010 01:24:38 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/echeck-integration/m-p/1346#M1156</guid>
      <dc:creator>stymiee</dc:creator>
      <dc:date>2010-01-03T01:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: echeck integration</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/echeck-integration/m-p/1353#M1163</link>
      <description>&lt;P&gt;Maybe this will be easier for you to use. Download the &lt;A target="_self" rel="nofollow" href="http://www.johnconde.net/files/AuthnetAIM.class.phps"&gt;Authnet PHP Class&lt;/A&gt; from &lt;A target="_self" rel="nofollow" href="http://www.johnconde.net/blog/tutorial-integrating-the-authorizenet-aim-api-with-php/"&gt;this tutorial&lt;/A&gt; and save it as AuthnetAIM.class.php. Here's sample code you would need to use it to process eChecks:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;$total&amp;nbsp;&amp;nbsp;&amp;nbsp; = $_POST['total'];&lt;BR /&gt;$routing&amp;nbsp; = $_POST['routing'];&lt;BR /&gt;$account&amp;nbsp; = $_POST['acctnumber'];&lt;BR /&gt;$bankname = $_POST['bankname'];&lt;BR /&gt;$acctname = $_POST['acctname'];&lt;BR /&gt;switch ($_POST['accttype'])&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; case 'Personal Checking':&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $accttype = 'checking';&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $echecktype = 'PPD';&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; break;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; case 'Business Checking':&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $accttype = 'businessChecking';&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $echecktype = 'CCD';&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; break;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; case 'Savings':&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $accttype = 'savings';&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $echecktype = 'PPD';&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;require_once('AuthnetAIM.class.php');&lt;BR /&gt;$payment = new AuthnetAIM();&lt;BR /&gt;$payment-&amp;gt;setEcheck($total, $routing, $account, $accttype, $bankname, $acctname, $echecktype);&lt;BR /&gt;$payment-&amp;gt;process();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You'll notice you'll need to create a form field that lets users choose what checking account type they are using called 'accttype' and then use PHP to use what they choose to set two of the parameters sent to Authnet to process the transaction. Also be sure to do proper data validation.&lt;/P&gt;</description>
      <pubDate>Sun, 03 Jan 2010 20:54:52 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/echeck-integration/m-p/1353#M1163</guid>
      <dc:creator>stymiee</dc:creator>
      <dc:date>2010-01-03T20:54:52Z</dc:date>
    </item>
    <item>
      <title>Re: echeck integration</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/echeck-integration/m-p/12020#M7428</link>
      <description>&lt;P&gt;I have tried this repeatedly and no matter what get the same error every time even when using a real 9-digit routing number:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;exception 'AuthnetAIMException' with message 'AuthnetAIM::setEcheck() requires a nine digit ABA/routing number.'&lt;/P&gt;</description>
      <pubDate>Thu, 14 Apr 2011 23:39:27 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/echeck-integration/m-p/12020#M7428</guid>
      <dc:creator>sccr410</dc:creator>
      <dc:date>2011-04-14T23:39:27Z</dc:date>
    </item>
    <item>
      <title>Re: echeck integration</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/echeck-integration/m-p/12022#M7429</link>
      <description>&lt;P&gt;I found the issue (I always do right after posting on forums...)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the PHP class, it was missing a reference to a variable.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Wrong (and in current PHP class that I downloaded a few weeks ago):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;    final public function setEcheck($aba, $account, $accttype, $bankname, $bankacctname, $echecktype, $transtype = 'AUTH_CAPTURE')&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Right&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;    final public function setEcheck(&lt;STRONG&gt;$amount, &lt;/STRONG&gt;$aba, $account, $accttype, $bankname, $bankacctname, $echecktype, $transtype = 'AUTH_CAPTURE')&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Apr 2011 23:45:57 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/echeck-integration/m-p/12022#M7429</guid>
      <dc:creator>sccr410</dc:creator>
      <dc:date>2011-04-14T23:45:57Z</dc:date>
    </item>
    <item>
      <title>Re: echeck integration</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/echeck-integration/m-p/37103#M20581</link>
      <description>&lt;P&gt;Can you please suggest me any reference&amp;nbsp; where I caould implement this in ASP.Net ?&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2013 11:57:45 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/echeck-integration/m-p/37103#M20581</guid>
      <dc:creator>CyberTestCNPL23</dc:creator>
      <dc:date>2013-12-02T11:57:45Z</dc:date>
    </item>
    <item>
      <title>Re: echeck integration</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/echeck-integration/m-p/37111#M20585</link>
      <description>&lt;P&gt;&lt;A href="http://community.developer.authorize.net/t5/Integration-and-Testing/echeck-integration/m-p/1346/highlight/true#M1156" target="_blank"&gt;http://community.developer.authorize.net/t5/Integration-and-Testing/echeck-integration/m-p/1346/highlight/true#M1156&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.authorize.net/support/eCheck.pdf" target="_blank"&gt;http://www.authorize.net/support/eCheck.pdf&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2013 23:13:31 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/echeck-integration/m-p/37111#M20585</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2013-12-02T23:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: echeck integration</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/echeck-integration/m-p/49217#M24816</link>
      <description>&lt;P&gt;John Conde:&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried to implement the code you provided in the blog post that I am responding to but it could not operate properly because&amp;nbsp; the amount is NOT included in the argument list of the setEcheck function ( of AuthnetAIM.class.php ) .&amp;nbsp; So the sample code does not match the downloadable library file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to get some code to implement echeck on my web site, can you suggest or provide anything that I could use ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&amp;nbsp; &amp;nbsp; Steve Padgett.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jan 2015 18:45:26 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/echeck-integration/m-p/49217#M24816</guid>
      <dc:creator>steve7642</dc:creator>
      <dc:date>2015-01-01T18:45:26Z</dc:date>
    </item>
  </channel>
</rss>

