<?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: Payment information is required - Code: E00029 using ARB and checking account in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Payment-information-is-required-Code-E00029-using-ARB-and/m-p/45423#M23002</link>
    <description>&lt;P&gt;As Raynor indicated, this appears to just be a variable name issue. Each of the bank account related fields int he Subscription Object is preceded by "bankAccount".&amp;nbsp; The specifc lines to change in your code would be as follows:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;	$subscription-&amp;gt;bankAccountAccountType = "checking";
	$subscription-&amp;gt;bankAccountRoutingNumber = "123456789";
	$subscription-&amp;gt;bankAccountAccountNumber = "12345345345";
	$subscription-&amp;gt;bankAccountNameOnAccount = "Rasmus Doe";
	$subscription-&amp;gt;bankAccountEcheckType = "WEB";
	$subscription-&amp;gt;bankAccountBankName = "Bank of America";&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 16 Jul 2014 22:29:34 GMT</pubDate>
    <dc:creator>Trevor</dc:creator>
    <dc:date>2014-07-16T22:29:34Z</dc:date>
    <item>
      <title>Payment information is required - Code: E00029 using ARB and checking account</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Payment-information-is-required-Code-E00029-using-ARB-and/m-p/45252#M22916</link>
      <description>&lt;P&gt;I am able to successfully setup a recurring payment using a credit card and ARB, but once I change up the code to use&lt;/P&gt;&lt;P&gt;a checking account, I get an error stating 'payment information is required'.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My code is:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;$subscription = new AuthorizeNet_Subscription;&lt;BR /&gt;$subscription-&amp;gt;name = "PHP Monthly Magazine";&lt;BR /&gt;$subscription-&amp;gt;intervalLength = "1";&lt;BR /&gt;$subscription-&amp;gt;intervalUnit = "months";&lt;BR /&gt;$subscription-&amp;gt;startDate = "2014-08-12";&lt;BR /&gt;$subscription-&amp;gt;totalOccurrences = "12";&lt;BR /&gt;$subscription-&amp;gt;amount = "12.99";&lt;BR /&gt;$subscription-&amp;gt;billToFirstName = "Rasmus";&lt;BR /&gt;$subscription-&amp;gt;billToLastName = "Doe";&lt;BR /&gt;$subscription-&amp;gt;accountType = "checking";&lt;BR /&gt;$subscription-&amp;gt;routingNumber = "123456789";&lt;BR /&gt;$subscription-&amp;gt;accountNumber = "12345345345";&lt;BR /&gt;$subscription-&amp;gt;nameOnAccount = "Rasmus Doe";&lt;BR /&gt;$subscription-&amp;gt;echeckType = "WEB";&lt;BR /&gt;$subscription-&amp;gt;bankName = "Bank of America";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Per the documenation I have all the necessary fields for a bank account, so what am I missing?&lt;/P&gt;</description>
      <pubDate>Sun, 13 Jul 2014 18:38:01 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Payment-information-is-required-Code-E00029-using-ARB-and/m-p/45252#M22916</guid>
      <dc:creator>jrichey0219</dc:creator>
      <dc:date>2014-07-13T18:38:01Z</dc:date>
    </item>
    <item>
      <title>Re: Payment information is required - Code: E00029 using ARB and checking account</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Payment-information-is-required-Code-E00029-using-ARB-and/m-p/45254#M22917</link>
      <description>&lt;P&gt;If you using the SDK&lt;/P&gt;&lt;P&gt;the field name might be different&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="https://github.com/AuthorizeNet/sdk-php/blob/77ed2315c722bbb8ae82b545d4a5fa2a1ce1f4c7/lib/shared/AuthorizeNetTypes.php"&gt;https://github.com/AuthorizeNet/sdk-php/blob/77ed2315c722bbb8ae82b545d4a5fa2a1ce1f4c7/lib/shared/AuthorizeNetTypes.php&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 13 Jul 2014 20:03:49 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Payment-information-is-required-Code-E00029-using-ARB-and/m-p/45254#M22917</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-07-13T20:03:49Z</dc:date>
    </item>
    <item>
      <title>Re: Payment information is required - Code: E00029 using ARB and checking account</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Payment-information-is-required-Code-E00029-using-ARB-and/m-p/45423#M23002</link>
      <description>&lt;P&gt;As Raynor indicated, this appears to just be a variable name issue. Each of the bank account related fields int he Subscription Object is preceded by "bankAccount".&amp;nbsp; The specifc lines to change in your code would be as follows:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;	$subscription-&amp;gt;bankAccountAccountType = "checking";
	$subscription-&amp;gt;bankAccountRoutingNumber = "123456789";
	$subscription-&amp;gt;bankAccountAccountNumber = "12345345345";
	$subscription-&amp;gt;bankAccountNameOnAccount = "Rasmus Doe";
	$subscription-&amp;gt;bankAccountEcheckType = "WEB";
	$subscription-&amp;gt;bankAccountBankName = "Bank of America";&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jul 2014 22:29:34 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Payment-information-is-required-Code-E00029-using-ARB-and/m-p/45423#M23002</guid>
      <dc:creator>Trevor</dc:creator>
      <dc:date>2014-07-16T22:29:34Z</dc:date>
    </item>
  </channel>
</rss>

