<?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 Error E00001 on createCustomerProfileTransaction in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-E00001-on-createCustomerProfileTransaction/m-p/40292#M21906</link>
    <description>&lt;P&gt;Setting up Authorize.net on Laravel. The CIM aspect in particular is what I'm working on.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Creating customer profiles and payment profiles works fine, but when it comes to running a test transaction, I get "E00001" When I get the transaction response the error_message field reads:&amp;nbsp;&lt;FONT color="#cc0000"&gt;'Error connecting to AuthorizeNet'&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This seems to be a problem on the server side...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would prefer testing with fake credit cards instead of real ones.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any thoughts?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jim&lt;/P&gt;</description>
    <pubDate>Fri, 04 Apr 2014 22:43:25 GMT</pubDate>
    <dc:creator>prawdapus2</dc:creator>
    <dc:date>2014-04-04T22:43:25Z</dc:date>
    <item>
      <title>Error E00001 on createCustomerProfileTransaction</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-E00001-on-createCustomerProfileTransaction/m-p/40292#M21906</link>
      <description>&lt;P&gt;Setting up Authorize.net on Laravel. The CIM aspect in particular is what I'm working on.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Creating customer profiles and payment profiles works fine, but when it comes to running a test transaction, I get "E00001" When I get the transaction response the error_message field reads:&amp;nbsp;&lt;FONT color="#cc0000"&gt;'Error connecting to AuthorizeNet'&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This seems to be a problem on the server side...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would prefer testing with fake credit cards instead of real ones.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any thoughts?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jim&lt;/P&gt;</description>
      <pubDate>Fri, 04 Apr 2014 22:43:25 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-E00001-on-createCustomerProfileTransaction/m-p/40292#M21906</guid>
      <dc:creator>prawdapus2</dc:creator>
      <dc:date>2014-04-04T22:43:25Z</dc:date>
    </item>
    <item>
      <title>Re: Error E00001 on createCustomerProfileTransaction</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-E00001-on-createCustomerProfileTransaction/m-p/40322#M21921</link>
      <description>&lt;P&gt;Here is my code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if($gateway-&amp;gt;gateway_type=='authorize')&lt;BR /&gt;{&lt;BR /&gt;$old_profile=json_decode($donor-&amp;gt;authorize_profile);&lt;/P&gt;&lt;P&gt;$transaction = new Transaction();&lt;BR /&gt;$transaction-&amp;gt;amount = $params['amount'];&lt;BR /&gt;$transaction-&amp;gt;customerProfileId = $old_profile-&amp;gt;customer_id;&lt;BR /&gt;$transaction-&amp;gt;customerPaymentProfileId = $old_profile-&amp;gt;profile_id;&lt;/P&gt;&lt;P&gt;$response= $gateway-&amp;gt;createCustomerProfileTransaction("AuthCapture", $transaction);&lt;BR /&gt;&lt;BR /&gt;$transactionResponse = $response-&amp;gt;getTransactionResponse();&lt;/P&gt;&lt;P&gt;$response-&amp;gt;result= "Error Code : ".$response-&amp;gt;xml-&amp;gt;messages-&amp;gt;message-&amp;gt;code ." : " . $response-&amp;gt;xml-&amp;gt;messages-&amp;gt;message-&amp;gt;text;&lt;BR /&gt;$response-&amp;gt;success=$response-&amp;gt;isOk();&lt;/P&gt;&lt;P&gt;return $response;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;</description>
      <pubDate>Mon, 07 Apr 2014 23:16:46 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-E00001-on-createCustomerProfileTransaction/m-p/40322#M21921</guid>
      <dc:creator>prawdapus2</dc:creator>
      <dc:date>2014-04-07T23:16:46Z</dc:date>
    </item>
    <item>
      <title>Re: Error E00001 on createCustomerProfileTransaction</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-E00001-on-createCustomerProfileTransaction/m-p/40324#M21922</link>
      <description>&lt;P&gt;$transaction = new &lt;FONT color="#FF0000"&gt;Transaction&lt;/FONT&gt;();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="https://github.com/AuthorizeNet/sdk-php/blob/master/tests/AuthorizeNetCIM_Test.php"&gt;https://github.com/AuthorizeNet/sdk-php/blob/master/tests/AuthorizeNetCIM_Test.php&lt;/A&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;$transaction&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;new&lt;/SPAN&gt; &lt;SPAN&gt;AuthorizeNetTransaction&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;or are you doing something in Transaction()?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;can you see what the whole response xml is?&lt;/P&gt;</description>
      <pubDate>Mon, 07 Apr 2014 23:35:36 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-E00001-on-createCustomerProfileTransaction/m-p/40324#M21922</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-04-07T23:35:36Z</dc:date>
    </item>
    <item>
      <title>Re: Error E00001 on createCustomerProfileTransaction</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-E00001-on-createCustomerProfileTransaction/m-p/40344#M21929</link>
      <description>&lt;P&gt;Earlier in my code, I've included the transaction here:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;use AuthorizeNet\Common\Type\Transaction;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the dump of the response:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;STRONG&gt;object&lt;/STRONG&gt;(&lt;EM&gt;AuthorizeNet\Service\Cim\Response&lt;/EM&gt;)[&lt;EM&gt;787&lt;/EM&gt;]
  &lt;EM&gt;public&lt;/EM&gt; 'xml' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt; 
    &lt;STRONG&gt;object&lt;/STRONG&gt;(&lt;EM&gt;SimpleXMLElement&lt;/EM&gt;)[&lt;EM&gt;791&lt;/EM&gt;]
      &lt;EM&gt;public&lt;/EM&gt; 'messages' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt; 
        &lt;STRONG&gt;object&lt;/STRONG&gt;(&lt;EM&gt;SimpleXMLElement&lt;/EM&gt;)[&lt;EM&gt;788&lt;/EM&gt;]
          &lt;EM&gt;public&lt;/EM&gt; 'resultCode' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'Error'&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt; &lt;EM&gt;(length=5)&lt;/EM&gt;
          &lt;EM&gt;public&lt;/EM&gt; 'message' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt; 
            &lt;STRONG&gt;object&lt;/STRONG&gt;(&lt;EM&gt;SimpleXMLElement&lt;/EM&gt;)[&lt;EM&gt;784&lt;/EM&gt;]
              &lt;EM&gt;public&lt;/EM&gt; 'code' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'E00001'&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt; &lt;EM&gt;(length=6)&lt;/EM&gt;
              &lt;EM&gt;public&lt;/EM&gt; 'text' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'An error occurred during processing. Please try again.'&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt; &lt;EM&gt;(length=54)&lt;/EM&gt;
  &lt;EM&gt;public&lt;/EM&gt; 'response' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;&amp;lt;createCustomerProfileTransactionResponse xmlns:xsi="&lt;A target="_blank" href="http://www.w3.org/2001/XMLSchema-instance&amp;quot;"&gt;http://www.w3.org/2001/XMLSchema-instance"&lt;/A&gt; xmlns:xsd="&lt;A target="_blank" href="http://www.w3.org/2001/XMLSchema&amp;quot;"&gt;http://www.w3.org/2001/XMLSchema"&lt;/A&gt; xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"&amp;gt;&amp;lt;messages&amp;gt;&amp;lt;resultCode&amp;gt;Error&amp;lt;/resultCode&amp;gt;&amp;lt;message&amp;gt;&amp;lt;code&amp;gt;E00001&amp;lt;/code&amp;gt;&amp;lt;text&amp;gt;An error occurred during processing. Please try again.&amp;lt;/text&amp;gt;&amp;lt;/message&amp;gt;&amp;lt;/messages&amp;gt;&amp;lt;/createCustomerProfileTransactionResponse&amp;gt;'&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt; &lt;EM&gt;(length=429)&lt;/EM&gt;
  &lt;EM&gt;public&lt;/EM&gt; 'xpath_xml' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt; 
    &lt;STRONG&gt;object&lt;/STRONG&gt;(&lt;EM&gt;SimpleXMLElement&lt;/EM&gt;)[&lt;EM&gt;792&lt;/EM&gt;]
      &lt;EM&gt;public&lt;/EM&gt; 'messages' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt; 
        &lt;STRONG&gt;object&lt;/STRONG&gt;(&lt;EM&gt;SimpleXMLElement&lt;/EM&gt;)[&lt;EM&gt;780&lt;/EM&gt;]
          &lt;EM&gt;public&lt;/EM&gt; 'resultCode' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'Error'&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt; &lt;EM&gt;(length=5)&lt;/EM&gt;
          &lt;EM&gt;public&lt;/EM&gt; 'message' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt; 
            &lt;STRONG&gt;object&lt;/STRONG&gt;(&lt;EM&gt;SimpleXMLElement&lt;/EM&gt;)[&lt;EM&gt;783&lt;/EM&gt;]
              &lt;EM&gt;public&lt;/EM&gt; 'code' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'E00001'&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt; &lt;EM&gt;(length=6)&lt;/EM&gt;
              &lt;EM&gt;public&lt;/EM&gt; 'text' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'An error occurred during processing. Please try again.'&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt; &lt;EM&gt;(length=54)&lt;/EM&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 08 Apr 2014 18:11:12 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-E00001-on-createCustomerProfileTransaction/m-p/40344#M21929</guid>
      <dc:creator>prawdapus2</dc:creator>
      <dc:date>2014-04-08T18:11:12Z</dc:date>
    </item>
    <item>
      <title>Re: Error E00001 on createCustomerProfileTransaction</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-E00001-on-createCustomerProfileTransaction/m-p/40346#M21930</link>
      <description>&lt;P&gt;It this a live production account?&lt;/P&gt;</description>
      <pubDate>Tue, 08 Apr 2014 19:39:37 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-E00001-on-createCustomerProfileTransaction/m-p/40346#M21930</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-04-08T19:39:37Z</dc:date>
    </item>
    <item>
      <title>Re: Error E00001 on createCustomerProfileTransaction</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-E00001-on-createCustomerProfileTransaction/m-p/40348#M21931</link>
      <description>&lt;P&gt;This is running in a sandbox in "live mode"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Apr 2014 19:52:02 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-E00001-on-createCustomerProfileTransaction/m-p/40348#M21931</guid>
      <dc:creator>prawdapus2</dc:creator>
      <dc:date>2014-04-08T19:52:02Z</dc:date>
    </item>
    <item>
      <title>Re: Error E00001 on createCustomerProfileTransaction</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-E00001-on-createCustomerProfileTransaction/m-p/40350#M21932</link>
      <description>&lt;P&gt;Can you login to the sandbox account and do it on the authorize.net website? just want to make sure it not something on the CIM account.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Apr 2014 20:31:15 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-E00001-on-createCustomerProfileTransaction/m-p/40350#M21932</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-04-08T20:31:15Z</dc:date>
    </item>
    <item>
      <title>Re: Error E00001 on createCustomerProfileTransaction</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-E00001-on-createCustomerProfileTransaction/m-p/40354#M21934</link>
      <description>&lt;P&gt;Yes, I can make transactions on the sandbox customer profiles that my app has created.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Apr 2014 21:45:01 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-E00001-on-createCustomerProfileTransaction/m-p/40354#M21934</guid>
      <dc:creator>prawdapus2</dc:creator>
      <dc:date>2014-04-08T21:45:01Z</dc:date>
    </item>
    <item>
      <title>Re: Error E00001 on createCustomerProfileTransaction</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-E00001-on-createCustomerProfileTransaction/m-p/40358#M21936</link>
      <description>&lt;P&gt;Additionally, this is what I get when I call the&amp;nbsp;getTransactionResponse() function&lt;/P&gt;&lt;PRE&gt;&lt;STRONG&gt;object&lt;/STRONG&gt;(&lt;EM&gt;AuthorizeNetAIM_Response&lt;/EM&gt;)[&lt;EM&gt;792&lt;/EM&gt;]
  &lt;EM&gt;private&lt;/EM&gt; '_response_array' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt; 
    &lt;STRONG&gt;array&lt;/STRONG&gt; &lt;EM&gt;(size=0)&lt;/EM&gt;
      &lt;EM&gt;&lt;FONT color="#888a85"&gt;empty&lt;/FONT&gt;&lt;/EM&gt;
  &lt;EM&gt;public&lt;/EM&gt; 'approved' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;boolean&lt;FONT color="#75507b"&gt;false&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'declined' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'error' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;boolean&lt;FONT color="#75507b"&gt;true&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'held' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'response_code' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'response_subcode' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'response_reason_code' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'response_reason_text' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'authorization_code' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'avs_response' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'transaction_id' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'invoice_number' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'description' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'amount' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'method' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'transaction_type' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'customer_id' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'first_name' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'last_name' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'company' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'address' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'city' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'state' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'zip_code' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'country' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'phone' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'fax' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'email_address' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'ship_to_first_name' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'ship_to_last_name' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'ship_to_company' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'ship_to_address' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'ship_to_city' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'ship_to_state' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'ship_to_zip_code' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'ship_to_country' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'tax' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'duty' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'freight' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'tax_exempt' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'purchase_order_number' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'md5_hash' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'card_code_response' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'cavv_response' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'account_number' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'card_type' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'split_tender_id' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'requested_amount' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'balance_on_card' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'response' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;  &lt;EM&gt;public&lt;/EM&gt; 'error_message' &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'Error connecting to AuthorizeNet'&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt; &lt;EM&gt;(length=32)&lt;/EM&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 08 Apr 2014 22:28:49 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-E00001-on-createCustomerProfileTransaction/m-p/40358#M21936</guid>
      <dc:creator>prawdapus2</dc:creator>
      <dc:date>2014-04-08T22:28:49Z</dc:date>
    </item>
    <item>
      <title>Re: Error E00001 on createCustomerProfileTransaction</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-E00001-on-createCustomerProfileTransaction/m-p/40366#M21940</link>
      <description>&lt;P&gt;Can you log the internet traffic using something like fiddler to see what is getting send?&lt;/P&gt;</description>
      <pubDate>Tue, 08 Apr 2014 23:27:42 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-E00001-on-createCustomerProfileTransaction/m-p/40366#M21940</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-04-08T23:27:42Z</dc:date>
    </item>
    <item>
      <title>Re: Error E00001 on createCustomerProfileTransaction</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-E00001-on-createCustomerProfileTransaction/m-p/40462#M21984</link>
      <description>&lt;PRE&gt;&lt;STRONG&gt;array&lt;/STRONG&gt; &lt;EM&gt;(size=4)&lt;/EM&gt;
  'gateway' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;Here is a dump of all the information&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; 
    &lt;STRONG&gt;object&lt;/STRONG&gt;(&lt;EM&gt;AuthorizeNetCIM&lt;/EM&gt;)[&lt;EM&gt;795&lt;/EM&gt;]
      &lt;EM&gt;private&lt;/EM&gt; '_xml' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; 
        &lt;STRONG&gt;object&lt;/STRONG&gt;(&lt;EM&gt;SimpleXMLElement&lt;/EM&gt;)[&lt;EM&gt;788&lt;/EM&gt;]
          &lt;EM&gt;public&lt;/EM&gt; 'merchantAuthentication' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; 
            &lt;STRONG&gt;object&lt;/STRONG&gt;(&lt;EM&gt;SimpleXMLElement&lt;/EM&gt;)[&lt;EM&gt;774&lt;/EM&gt;]
              &lt;EM&gt;public&lt;/EM&gt; 'name' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'3U9x4bspGPY'&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=11)&lt;/EM&gt;
              &lt;EM&gt;public&lt;/EM&gt; 'transactionKey' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'xxxxxx'&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=16)&lt;/EM&gt;
          &lt;EM&gt;public&lt;/EM&gt; 'transaction' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; 
            &lt;STRONG&gt;object&lt;/STRONG&gt;(&lt;EM&gt;SimpleXMLElement&lt;/EM&gt;)[&lt;EM&gt;797&lt;/EM&gt;]
              &lt;EM&gt;public&lt;/EM&gt; 'profileTransAuthCapture' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; 
                &lt;STRONG&gt;object&lt;/STRONG&gt;(&lt;EM&gt;SimpleXMLElement&lt;/EM&gt;)[&lt;EM&gt;799&lt;/EM&gt;]
                  &lt;EM&gt;public&lt;/EM&gt; 'amount' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'27.15'&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=5)&lt;/EM&gt;
                  &lt;EM&gt;public&lt;/EM&gt; 'customerProfileId' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'139715222637'&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=12)&lt;/EM&gt;
                  &lt;EM&gt;public&lt;/EM&gt; 'customerPaymentProfileId' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'25369882'&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=8)&lt;/EM&gt;
          &lt;EM&gt;public&lt;/EM&gt; 'extraOptions' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; 
            &lt;STRONG&gt;object&lt;/STRONG&gt;(&lt;EM&gt;SimpleXMLElement&lt;/EM&gt;)[&lt;EM&gt;798&lt;/EM&gt;]
      &lt;EM&gt;private&lt;/EM&gt; '_refId' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;boolean&lt;FONT color="#75507b"&gt;false&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;private&lt;/EM&gt; '_validationMode' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'none'&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=4)&lt;/EM&gt;
      &lt;EM&gt;private&lt;/EM&gt; '_extraOptions' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;boolean&lt;FONT color="#75507b"&gt;false&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;private&lt;/EM&gt; '_transactionTypes' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; 
        &lt;STRONG&gt;array&lt;/STRONG&gt; &lt;EM&gt;(size=6)&lt;/EM&gt;
          0 &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'AuthOnly'&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=8)&lt;/EM&gt;
          1 &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'AuthCapture'&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=11)&lt;/EM&gt;
          2 &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'CaptureOnly'&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=11)&lt;/EM&gt;
          3 &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'PriorAuthCapture'&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=16)&lt;/EM&gt;
          4 &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'Refund'&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=6)&lt;/EM&gt;
          5 &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'Void'&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=4)&lt;/EM&gt;
      &lt;EM&gt;protected&lt;/EM&gt; '_api_login' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'3U9x4bspGPY'&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=11)&lt;/EM&gt;
      &lt;EM&gt;protected&lt;/EM&gt; '_transaction_key' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'xxxxxx'&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=16)&lt;/EM&gt;
      &lt;EM&gt;protected&lt;/EM&gt; '_post_string' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt; &amp;lt;createCustomerProfileTransactionRequest xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"&amp;gt;&amp;lt;merchantAuthentication&amp;gt;&amp;lt;name&amp;gt;3U9x4bspGPY&amp;lt;/name&amp;gt;&amp;lt;transactionKey&amp;gt;XXXXXXXXX&amp;lt;/transactionKey&amp;gt;&amp;lt;/merchantAuthentication&amp;gt;&amp;lt;transaction&amp;gt;&amp;lt;profileTransAuthCapture&amp;gt;&amp;lt;amount&amp;gt;27.15&amp;lt;/amount&amp;gt;&amp;lt;customerProfileId&amp;gt;139715222637&amp;lt;/customerProfileId&amp;gt;&amp;lt;customerPaymentProfileId&amp;gt;25369882&amp;lt;/customerPaymentProfileId&amp;gt;&amp;lt;/profileTransAuthCapture&amp;gt;&amp;lt;/transaction&amp;gt;&amp;lt;extraOptions&amp;gt;&amp;lt;![CDATA[x_encap_char=|]]&amp;gt;&amp;lt;/extraOptions&amp;gt;&amp;lt;/createCustomerProfileTransactionRequest&amp;gt; '&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=560)&lt;/EM&gt;
      &lt;EM&gt;public&lt;/EM&gt; 'VERIFY_PEER' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;boolean&lt;FONT color="#75507b"&gt;true&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;protected&lt;/EM&gt; '_sandbox' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;boolean&lt;FONT color="#75507b"&gt;true&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;protected&lt;/EM&gt; '_log_file' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;boolean&lt;FONT color="#75507b"&gt;false&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'gateway_type' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'authorize'&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=9)&lt;/EM&gt;
  'transaction' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; 
    &lt;STRONG&gt;object&lt;/STRONG&gt;(&lt;EM&gt;AuthorizeNetTransaction&lt;/EM&gt;)[&lt;EM&gt;792&lt;/EM&gt;]
      &lt;EM&gt;public&lt;/EM&gt; 'amount' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'27.15'&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=5)&lt;/EM&gt;
      &lt;EM&gt;public&lt;/EM&gt; 'tax' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; 
        &lt;STRONG&gt;object&lt;/STRONG&gt;(&lt;EM&gt;stdClass&lt;/EM&gt;)[&lt;EM&gt;791&lt;/EM&gt;]
          &lt;EM&gt;public&lt;/EM&gt; 'amount' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;''&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=0)&lt;/EM&gt;
          &lt;EM&gt;public&lt;/EM&gt; 'name' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;''&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=0)&lt;/EM&gt;
          &lt;EM&gt;public&lt;/EM&gt; 'description' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;''&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=0)&lt;/EM&gt;
      &lt;EM&gt;public&lt;/EM&gt; 'shipping' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; 
        &lt;STRONG&gt;object&lt;/STRONG&gt;(&lt;EM&gt;stdClass&lt;/EM&gt;)[&lt;EM&gt;789&lt;/EM&gt;]
          &lt;EM&gt;public&lt;/EM&gt; 'amount' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;''&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=0)&lt;/EM&gt;
          &lt;EM&gt;public&lt;/EM&gt; 'name' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;''&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=0)&lt;/EM&gt;
          &lt;EM&gt;public&lt;/EM&gt; 'description' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;''&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=0)&lt;/EM&gt;
      &lt;EM&gt;public&lt;/EM&gt; 'duty' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; 
        &lt;STRONG&gt;object&lt;/STRONG&gt;(&lt;EM&gt;stdClass&lt;/EM&gt;)[&lt;EM&gt;784&lt;/EM&gt;]
          &lt;EM&gt;public&lt;/EM&gt; 'amount' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;''&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=0)&lt;/EM&gt;
          &lt;EM&gt;public&lt;/EM&gt; 'name' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;''&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=0)&lt;/EM&gt;
          &lt;EM&gt;public&lt;/EM&gt; 'description' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;''&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=0)&lt;/EM&gt;
      &lt;EM&gt;public&lt;/EM&gt; 'lineItems' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; 
        &lt;STRONG&gt;array&lt;/STRONG&gt; &lt;EM&gt;(size=0)&lt;/EM&gt;
          &lt;EM&gt;&lt;FONT color="#888a85"&gt;empty&lt;/FONT&gt;&lt;/EM&gt;
      &lt;EM&gt;public&lt;/EM&gt; 'customerProfileId' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'139715222637'&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=12)&lt;/EM&gt;
      &lt;EM&gt;public&lt;/EM&gt; 'customerPaymentProfileId' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'25369882'&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=8)&lt;/EM&gt;
      &lt;EM&gt;public&lt;/EM&gt; 'customerShippingAddressId' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'creditCardNumberMasked' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'bankRoutingNumberMasked' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'bankAccountNumberMasked' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'order' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; 
        &lt;STRONG&gt;object&lt;/STRONG&gt;(&lt;EM&gt;stdClass&lt;/EM&gt;)[&lt;EM&gt;793&lt;/EM&gt;]
          &lt;EM&gt;public&lt;/EM&gt; 'invoiceNumber' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;''&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=0)&lt;/EM&gt;
          &lt;EM&gt;public&lt;/EM&gt; 'description' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;''&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=0)&lt;/EM&gt;
          &lt;EM&gt;public&lt;/EM&gt; 'purchaseOrderNumber' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;''&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=0)&lt;/EM&gt;
      &lt;EM&gt;public&lt;/EM&gt; 'taxExempt' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'recurringBilling' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'cardCode' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'splitTenderId' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'approvalCode' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'transId' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;  'response' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; 
    &lt;STRONG&gt;object&lt;/STRONG&gt;(&lt;EM&gt;AuthorizeNetCIM_Response&lt;/EM&gt;)[&lt;EM&gt;782&lt;/EM&gt;]
      &lt;EM&gt;public&lt;/EM&gt; 'xml' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; 
        &lt;STRONG&gt;object&lt;/STRONG&gt;(&lt;EM&gt;SimpleXMLElement&lt;/EM&gt;)[&lt;EM&gt;787&lt;/EM&gt;]
          &lt;EM&gt;public&lt;/EM&gt; 'messages' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; 
            &lt;STRONG&gt;object&lt;/STRONG&gt;(&lt;EM&gt;SimpleXMLElement&lt;/EM&gt;)[&lt;EM&gt;800&lt;/EM&gt;]
              &lt;EM&gt;public&lt;/EM&gt; 'resultCode' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'Error'&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=5)&lt;/EM&gt;
              &lt;EM&gt;public&lt;/EM&gt; 'message' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; 
                &lt;STRONG&gt;object&lt;/STRONG&gt;(&lt;EM&gt;SimpleXMLElement&lt;/EM&gt;)[&lt;EM&gt;801&lt;/EM&gt;]
                  &lt;EM&gt;public&lt;/EM&gt; 'code' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'E00001'&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=6)&lt;/EM&gt;
                  &lt;EM&gt;public&lt;/EM&gt; 'text' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'An error occurred during processing. Please try again.'&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=54)&lt;/EM&gt;
      &lt;EM&gt;public&lt;/EM&gt; 'response' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'ï»¿&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;&amp;lt;createCustomerProfileTransactionResponse xmlns:xsi="&lt;A href="http://www.w3.org/2001/XMLSchema-instance&amp;quot;" target="_blank"&gt;http://www.w3.org/2001/XMLSchema-instance"&lt;/A&gt; xmlns:xsd="&lt;A href="http://www.w3.org/2001/XMLSchema&amp;quot;" target="_blank"&gt;http://www.w3.org/2001/XMLSchema"&lt;/A&gt; xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"&amp;gt;&amp;lt;messages&amp;gt;&amp;lt;resultCode&amp;gt;Error&amp;lt;/resultCode&amp;gt;&amp;lt;message&amp;gt;&amp;lt;code&amp;gt;E00001&amp;lt;/code&amp;gt;&amp;lt;text&amp;gt;An error occurred during processing. Please try again.&amp;lt;/text&amp;gt;&amp;lt;/message&amp;gt;&amp;lt;/messages&amp;gt;&amp;lt;/createCustomerProfileTransactionResponse&amp;gt;'&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=429)&lt;/EM&gt;
      &lt;EM&gt;public&lt;/EM&gt; 'xpath_xml' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; 
        &lt;STRONG&gt;object&lt;/STRONG&gt;(&lt;EM&gt;SimpleXMLElement&lt;/EM&gt;)[&lt;EM&gt;796&lt;/EM&gt;]
          &lt;EM&gt;public&lt;/EM&gt; 'messages' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; 
            &lt;STRONG&gt;object&lt;/STRONG&gt;(&lt;EM&gt;SimpleXMLElement&lt;/EM&gt;)[&lt;EM&gt;802&lt;/EM&gt;]
              &lt;EM&gt;public&lt;/EM&gt; 'resultCode' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'Error'&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=5)&lt;/EM&gt;
              &lt;EM&gt;public&lt;/EM&gt; 'message' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; 
                &lt;STRONG&gt;object&lt;/STRONG&gt;(&lt;EM&gt;SimpleXMLElement&lt;/EM&gt;)[&lt;EM&gt;803&lt;/EM&gt;]
                  &lt;EM&gt;public&lt;/EM&gt; 'code' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'E00001'&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=6)&lt;/EM&gt;
                  &lt;EM&gt;public&lt;/EM&gt; 'text' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'An error occurred during processing. Please try again.'&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=54)&lt;/EM&gt;
  'TransactionResponse' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; 
    &lt;STRONG&gt;object&lt;/STRONG&gt;(&lt;EM&gt;AuthorizeNetAIM_Response&lt;/EM&gt;)[&lt;EM&gt;786&lt;/EM&gt;]
      &lt;EM&gt;private&lt;/EM&gt; '_response_array' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; 
        &lt;STRONG&gt;array&lt;/STRONG&gt; &lt;EM&gt;(size=0)&lt;/EM&gt;
          &lt;EM&gt;&lt;FONT color="#888a85"&gt;empty&lt;/FONT&gt;&lt;/EM&gt;
      &lt;EM&gt;public&lt;/EM&gt; 'approved' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;boolean&lt;FONT color="#75507b"&gt;false&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'declined' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'error' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;boolean&lt;FONT color="#75507b"&gt;true&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'held' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'response_code' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'response_subcode' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'response_reason_code' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'response_reason_text' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'authorization_code' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'avs_response' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'transaction_id' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'invoice_number' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'description' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'amount' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'method' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'transaction_type' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'customer_id' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'first_name' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'last_name' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'company' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'address' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'city' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'state' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'zip_code' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'country' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'phone' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'fax' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'email_address' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'ship_to_first_name' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'ship_to_last_name' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'ship_to_company' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'ship_to_address' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'ship_to_city' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'ship_to_state' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'ship_to_zip_code' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'ship_to_country' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'tax' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'duty' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'freight' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'tax_exempt' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'purchase_order_number' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'md5_hash' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'card_code_response' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'cavv_response' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'account_number' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'card_type' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'split_tender_id' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'requested_amount' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'balance_on_card' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'response' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;&lt;FONT color="#3465a4"&gt;null&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;      &lt;EM&gt;public&lt;/EM&gt; 'error_message' &lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#888a85"&gt;=&amp;gt;&lt;/FONT&gt;string&lt;FONT color="#cc0000"&gt;'Error connecting to AuthorizeNet'&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; &lt;EM&gt;(length=32)&lt;/EM&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 15 Apr 2014 15:59:52 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-E00001-on-createCustomerProfileTransaction/m-p/40462#M21984</guid>
      <dc:creator>prawdapus2</dc:creator>
      <dc:date>2014-04-15T15:59:52Z</dc:date>
    </item>
    <item>
      <title>Re: Error E00001 on createCustomerProfileTransaction</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-E00001-on-createCustomerProfileTransaction/m-p/40470#M21988</link>
      <description>&lt;P&gt;I think you found a bug on authorize.net, the customerprofileid is wrong, I just created one and it is 8 digits and your is 12 digits.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Apr 2014 20:15:02 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-E00001-on-createCustomerProfileTransaction/m-p/40470#M21988</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-04-10T20:15:02Z</dc:date>
    </item>
    <item>
      <title>Re: Error E00001 on createCustomerProfileTransaction</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-E00001-on-createCustomerProfileTransaction/m-p/40472#M21989</link>
      <description>&lt;P&gt;Hello&lt;BR /&gt;&lt;BR /&gt;I'll have an integration support team member look at this thread.&lt;BR /&gt;&lt;BR /&gt;I'd recommend subscribing to this topic so that you'll be alerted via email if there are updates. To subscribe, click &lt;STRONG&gt;Topic Options&lt;/STRONG&gt; at the top of this thread and then select &lt;STRONG&gt;Subscribe&lt;/STRONG&gt;. You'll then receive an email once anyone replies to your post.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;Richard&lt;/P&gt;</description>
      <pubDate>Thu, 10 Apr 2014 21:06:17 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-E00001-on-createCustomerProfileTransaction/m-p/40472#M21989</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2014-04-10T21:06:17Z</dc:date>
    </item>
    <item>
      <title>Re: Error E00001 on createCustomerProfileTransaction</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-E00001-on-createCustomerProfileTransaction/m-p/40554#M22026</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As Raynor said, the customerProfileIds generated by Authorize.Net are currently 8 digits long. I'd recommend double-checking where you are pulling this data. I see that youa re using "$old_profile-&amp;gt;customer_id". This indicates that you may be confusing the merchantCustomerId (assigned by you to the profile) with the customerProfileId (generated by Authorize.Net). Only the customerProfileId can be used to charge the profile.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Joy&lt;/P&gt;</description>
      <pubDate>Mon, 14 Apr 2014 22:59:38 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-E00001-on-createCustomerProfileTransaction/m-p/40554#M22026</guid>
      <dc:creator>Joy</dc:creator>
      <dc:date>2014-04-14T22:59:38Z</dc:date>
    </item>
    <item>
      <title>Re: Error E00001 on createCustomerProfileTransaction</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-E00001-on-createCustomerProfileTransaction/m-p/40666#M22078</link>
      <description>&lt;P&gt;Hello Joy,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Problem solved!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I didn't realize that there are actually three separate Id's being used by Authorize.net CIM&lt;/P&gt;&lt;P&gt;1. Customer Profile ID&lt;/P&gt;&lt;P&gt;2. Customer Payment Profile ID&lt;/P&gt;&lt;P&gt;3. Merchant Customer ID&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I had mistakenly used the Merchant Id (created by me, the merchant) as the Payment Profile ID.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The CIM testing documentation didn't mention much about this function:&lt;/P&gt;&lt;P&gt;$response-&amp;gt;getCustomerPaymentProfileIds()&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Which is what I needed to get the Customer Payment Profile Id.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help in resolving this problem!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jim&lt;/P&gt;</description>
      <pubDate>Tue, 22 Apr 2014 00:59:59 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-E00001-on-createCustomerProfileTransaction/m-p/40666#M22078</guid>
      <dc:creator>prawdapus2</dc:creator>
      <dc:date>2014-04-22T00:59:59Z</dc:date>
    </item>
  </channel>
</rss>

