<?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: Not in testmode, but sometimes getting an AuthCode of &amp;quot;000000&amp;quot; in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Not-in-testmode-but-sometimes-getting-an-AuthCode-of-quot-000000/m-p/59947#M34516</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/22350"&gt;@esdictor&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I was assuming from your text that you get the authCode of "000000" when the transaction is declined or errored, (i.e. responseCode &amp;lt;&amp;gt;1). Are you also getting this on successfully charged transactions?&lt;/P&gt;</description>
    <pubDate>Wed, 20 Sep 2017 18:04:04 GMT</pubDate>
    <dc:creator>Aaron</dc:creator>
    <dc:date>2017-09-20T18:04:04Z</dc:date>
    <item>
      <title>Not in testmode, but sometimes getting an AuthCode of "000000"</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Not-in-testmode-but-sometimes-getting-an-AuthCode-of-quot-000000/m-p/59936#M34505</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Background&lt;/STRONG&gt;: We have had an "annual renewal" application running successfully for a couple years. A year ago we added code to start saving Customer Profiles on Authorize. Now we are sometimes (often) getting AuthCodes of "000000" for transactions. We have an ASP-MVC application written in C#.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;What we're seeing&lt;/STRONG&gt;: The transaction goes like this:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;We connect to the API with our API Login, Tran Key, and set IsSandbox to FALSE&lt;/LI&gt;&lt;LI&gt;We create a customerAddressType object with the information from the customer&lt;/LI&gt;&lt;LI&gt;We create a customerPaymentProfileType object with the Card Number and Expiration, setting the Bill To using the object from the previous step&lt;/LI&gt;&lt;LI&gt;We add the objects from the previous 2 steps to profiles and addresses&lt;/LI&gt;&lt;LI&gt;We then create a customerProfileType object using data from the customer&lt;/LI&gt;&lt;LI&gt;Using the object from step 5, we createCustomerProfileRequest, then createCustomerProfileController, and finally Execute&lt;/LI&gt;&lt;LI&gt;In most cases, the profile will be a duplicate, and we will get message "E00039" - this is normal for us. If we don't get that message (first time renewal) skip the next step&lt;/LI&gt;&lt;LI&gt;We get the Customer Profile ID from the error, and use that going forward&lt;/LI&gt;&lt;LI&gt;We get the customerProfilePaymentType using the Customer Profile ID and Payment Profile that have been created&lt;/LI&gt;&lt;LI&gt;We now create the transactionRequestType using the amount and paymentProfile&lt;/LI&gt;&lt;LI&gt;We createTransactionRequest using the object created in the previous step&lt;/LI&gt;&lt;LI&gt;We createTransactionController and Execute it&lt;/LI&gt;&lt;LI&gt;The API Response messages.resultCode is OK&lt;/LI&gt;&lt;LI&gt;The API Response transactionResponse.transId is valid&lt;/LI&gt;&lt;LI&gt;The API Response transactionResponse.authCode is "000000"&lt;/LI&gt;&lt;LI&gt;The API Response transactionResponse has no detailed messages&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;At this point our code has made the determination that the customer was charged successfully, but the charge has actually failed. Looking at the actual transaction, I see:&lt;/P&gt;&lt;P&gt;Transaction Status: Declined (Card declined by issuer - Contact card issuer to determine reason.)&lt;/P&gt;&lt;P&gt;However, there are 2 reasons I feel this is on our end, and not an actual card issue:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;It is happening in about 75% of all charges&lt;/LI&gt;&lt;LI&gt;As I said above, this started happening suddenly, exactly one year after we started saving Customer Profiles. Since this is an annual renewal application, these are the first charges to happen with customers who previously used this latest version of our credit card processing (with the Customer Profile IDs).&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I appreciate any help in determining how to fix this issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Evan&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2017 15:33:32 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Not-in-testmode-but-sometimes-getting-an-AuthCode-of-quot-000000/m-p/59936#M34505</guid>
      <dc:creator>esdictor</dc:creator>
      <dc:date>2017-09-20T15:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: Not in testmode, but sometimes getting an AuthCode of "000000"</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Not-in-testmode-but-sometimes-getting-an-AuthCode-of-quot-000000/m-p/59941#M34510</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/22350"&gt;@esdictor&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Instead of looking for the presence or absence of an authCode, you should be looking for the&amp;nbsp;&lt;SPAN&gt;transactionResponse.responseCode. Anything other than 1 is not approved. In those cases, there should be an error in&amp;nbsp;transactionResponse.errors with detailed error codes/messages.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Error codes can be further analyzed at&amp;nbsp;&lt;A href="https://developer.authorize.net/api/reference/responseCodes.html" target="_blank"&gt;https://developer.authorize.net/api/reference/responseCodes.html&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2017 16:59:00 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Not-in-testmode-but-sometimes-getting-an-AuthCode-of-quot-000000/m-p/59941#M34510</guid>
      <dc:creator>Aaron</dc:creator>
      <dc:date>2017-09-20T16:59:00Z</dc:date>
    </item>
    <item>
      <title>Re: Not in testmode, but sometimes getting an AuthCode of "000000"</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Not-in-testmode-but-sometimes-getting-an-AuthCode-of-quot-000000/m-p/59946#M34515</link>
      <description>&lt;P&gt;Thanks Aaron.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just added some code to look at the responseCode. We were already using the transactionResponse.errors&amp;nbsp;when the messages.resultCode was NULL or not messageTypeEnum.Ok&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I believe your response only covers half of the issue. The other half is that we're getting these authCode "000000" in over 50% of our charges. This is a huge increase from our normal rate, so I can't help but think there's another variable somewhere that's causing this. That's why I tried to give so much detail in my description.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Evan&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2017 17:58:29 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Not-in-testmode-but-sometimes-getting-an-AuthCode-of-quot-000000/m-p/59946#M34515</guid>
      <dc:creator>esdictor</dc:creator>
      <dc:date>2017-09-20T17:58:29Z</dc:date>
    </item>
    <item>
      <title>Re: Not in testmode, but sometimes getting an AuthCode of "000000"</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Not-in-testmode-but-sometimes-getting-an-AuthCode-of-quot-000000/m-p/59947#M34516</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/22350"&gt;@esdictor&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I was assuming from your text that you get the authCode of "000000" when the transaction is declined or errored, (i.e. responseCode &amp;lt;&amp;gt;1). Are you also getting this on successfully charged transactions?&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2017 18:04:04 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Not-in-testmode-but-sometimes-getting-an-AuthCode-of-quot-000000/m-p/59947#M34516</guid>
      <dc:creator>Aaron</dc:creator>
      <dc:date>2017-09-20T18:04:04Z</dc:date>
    </item>
    <item>
      <title>Re: Not in testmode, but sometimes getting an AuthCode of "000000"</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Not-in-testmode-but-sometimes-getting-an-AuthCode-of-quot-000000/m-p/59950#M34519</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/22350"&gt;@esdictor&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I also just wanted to give a quick thanks for making your initial post so detailed. That really was&amp;nbsp;&lt;EM&gt;very&lt;/EM&gt; helpful!&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2017 18:13:50 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Not-in-testmode-but-sometimes-getting-an-AuthCode-of-quot-000000/m-p/59950#M34519</guid>
      <dc:creator>Aaron</dc:creator>
      <dc:date>2017-09-20T18:13:50Z</dc:date>
    </item>
    <item>
      <title>Re: Not in testmode, but sometimes getting an AuthCode of "000000"</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Not-in-testmode-but-sometimes-getting-an-AuthCode-of-quot-000000/m-p/59951#M34520</link>
      <description>&lt;P&gt;No. It appears that we are only getting "000000" with unsuccessful transactions. So far in all the ones we've checked the Transaction Detail shows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Transaction Status: Declined (Card declined by issuer - Contact card issuer to determine reason.)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Evan&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2017 18:15:05 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Not-in-testmode-but-sometimes-getting-an-AuthCode-of-quot-000000/m-p/59951#M34520</guid>
      <dc:creator>esdictor</dc:creator>
      <dc:date>2017-09-20T18:15:05Z</dc:date>
    </item>
    <item>
      <title>Re: Not in testmode, but sometimes getting an AuthCode of "000000"</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Not-in-testmode-but-sometimes-getting-an-AuthCode-of-quot-000000/m-p/59954#M34523</link>
      <description>&lt;P&gt;That's normal and expected, then. I would expect to see it that way on all declined transactions, but again, that's not the indicator that the transaction has been declined.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2017 18:22:04 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Not-in-testmode-but-sometimes-getting-an-AuthCode-of-quot-000000/m-p/59954#M34523</guid>
      <dc:creator>Aaron</dc:creator>
      <dc:date>2017-09-20T18:22:04Z</dc:date>
    </item>
    <item>
      <title>Re: Not in testmode, but sometimes getting an AuthCode of "000000"</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Not-in-testmode-but-sometimes-getting-an-AuthCode-of-quot-000000/m-p/59960#M34529</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/20843"&gt;@Aaron&lt;/a&gt; wrote:&lt;BR /&gt;&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/22350"&gt;@esdictor&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also just wanted to give a quick thanks for making your initial post so detailed. That really was&amp;nbsp;&lt;EM&gt;very&lt;/EM&gt; helpful!&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;I almost missed this post. Thanks, I didn't want to miss anything that might help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Evan&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2017 18:45:40 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Not-in-testmode-but-sometimes-getting-an-AuthCode-of-quot-000000/m-p/59960#M34529</guid>
      <dc:creator>esdictor</dc:creator>
      <dc:date>2017-09-20T18:45:40Z</dc:date>
    </item>
    <item>
      <title>Re: Not in testmode, but sometimes getting an AuthCode of "000000"</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Not-in-testmode-but-sometimes-getting-an-AuthCode-of-quot-000000/m-p/59962#M34531</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/20843"&gt;@Aaron&lt;/a&gt; wrote:&lt;BR /&gt;&lt;P&gt;That's normal and expected, then. I would expect to see it that way on all declined transactions, but again, that's not the indicator that the transaction has been declined.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;So the question now is, why are there so many declined transactions suddenly? That can't be a coincidence ... there must be something that's causing them on our end.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Evan&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2017 18:46:49 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Not-in-testmode-but-sometimes-getting-an-AuthCode-of-quot-000000/m-p/59962#M34531</guid>
      <dc:creator>esdictor</dc:creator>
      <dc:date>2017-09-20T18:46:49Z</dc:date>
    </item>
    <item>
      <title>Re: Not in testmode, but sometimes getting an AuthCode of "000000"</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Not-in-testmode-but-sometimes-getting-an-AuthCode-of-quot-000000/m-p/59966#M34535</link>
      <description>&lt;P&gt;Could be something on your end, or could just be the result of using a year old card number.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have you signed up for our Account Updater service? If you're going a year between charges, it's likely that a good percentage of people have had card numbers replaced or expired. Account Updater will actually keep those cards in the profiles updated for you without any interaction from the cardholder by getting new card numbers or expiration dates directly from the card issuers.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2017 19:03:46 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Not-in-testmode-but-sometimes-getting-an-AuthCode-of-quot-000000/m-p/59966#M34535</guid>
      <dc:creator>Aaron</dc:creator>
      <dc:date>2017-09-20T19:03:46Z</dc:date>
    </item>
    <item>
      <title>Re: Not in testmode, but sometimes getting an AuthCode of "000000"</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Not-in-testmode-but-sometimes-getting-an-AuthCode-of-quot-000000/m-p/60111#M34677</link>
      <description>&lt;P&gt;We continue to get a large number of declinations with&amp;nbsp;Code: 2, Text: This transaction has been declined.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The customers are telling us (all of them) that when they contact their card company they are being told there is no problem with their card.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to know how I can debug this problem, as we are getting a large number of unhappy clients as well as unhappy employees having to manually take the charges via phone.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Evan&lt;/P&gt;</description>
      <pubDate>Wed, 04 Oct 2017 16:49:38 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Not-in-testmode-but-sometimes-getting-an-AuthCode-of-quot-000000/m-p/60111#M34677</guid>
      <dc:creator>esdictor</dc:creator>
      <dc:date>2017-10-04T16:49:38Z</dc:date>
    </item>
    <item>
      <title>Re: Not in testmode, but sometimes getting an AuthCode of "000000"</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Not-in-testmode-but-sometimes-getting-an-AuthCode-of-quot-000000/m-p/71595#M44101</link>
      <description>&lt;P&gt;Hello Evan,&lt;/P&gt;&lt;P&gt;Did you ever figure this problem out?&lt;/P&gt;</description>
      <pubDate>Fri, 17 Apr 2020 03:05:48 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Not-in-testmode-but-sometimes-getting-an-AuthCode-of-quot-000000/m-p/71595#M44101</guid>
      <dc:creator>jasonlebitmo</dc:creator>
      <dc:date>2020-04-17T03:05:48Z</dc:date>
    </item>
  </channel>
</rss>

