<?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: CIM Refund Transaction has a bug in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-Refund-Transaction-has-a-bug/m-p/30172#M15797</link>
    <description>&lt;P&gt;1)Reason is 2) as it didn't see the ref profileID so it looking for a full cc#.&lt;/P&gt;&lt;P&gt;Did you add 'XXXX' for the masked cc#, e.g. XXXX6164&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2)For nullable fields, there is a xxxSpecified need to set to true if you are pass it in.&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;RefundCIM.customerProfileIdSpecified= true;&lt;/P&gt;&lt;P&gt;RefundCIM.customerPaymentProfileIdSpecified = true;&lt;/P&gt;</description>
    <pubDate>Thu, 27 Sep 2012 16:35:45 GMT</pubDate>
    <dc:creator>RaynorC1emen7</dc:creator>
    <dc:date>2012-09-27T16:35:45Z</dc:date>
    <item>
      <title>CIM Refund Transaction has a bug</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-Refund-Transaction-has-a-bug/m-p/30168#M15795</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We are using CIM/AIM API on our system. We saved our customer payment profile via CIM interface. It works fine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now, I am trying to integrate CIM Refund and Void transaction to our admin web portal. And, I did everything with SOAP guide. But, It did not work. I debugged line to line( VS 2012 with C#), and it return error message.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Here is my code: this one return E00013 Credit card number is invalid.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ProfileTransRefundType RefundCIM = new ProfileTransRefundType();&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RefundCIM.transId = TransID;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RefundCIM.customerProfileId=ProfileID;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RefundCIM.customerPaymentProfileId =PaymentProfileID;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RefundCIM.amount = Amount;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;U&gt;RefundCIM.creditCardNumberMasked = LastFour;&lt;/U&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ProfileTransactionType RefundType = new ProfileTransactionType();&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RefundType.Item =RefundCIM;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CreateCustomerProfileTransactionResponseType RefundCIMTrans = AuthorizeNETService.CreateCustomerProfileTransaction(Authorization, RefundType, null);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;This one return E00014 Payment profile id ,profile id or xxxx is required.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ProfileTransRefundType RefundCIM = new ProfileTransRefundType();&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RefundCIM.transId = TransID;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RefundCIM.customerProfileId=ProfileID;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RefundCIM.customerPaymentProfileId =PaymentProfileID;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RefundCIM.amount = Amount;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ProfileTransactionType RefundType = new ProfileTransactionType();&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RefundType.Item =RefundCIM;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CreateCustomerProfileTransactionResponseType RefundCIMTrans = AuthorizeNETService.CreateCustomerProfileTransaction(Authorization, RefundType, null);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Between those two transactions only different is first one I sent last four digit credit card number, second one is I did not send that last four digit credit card number.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The customer credit card details already saved on Authorize.NET . I only provided profile id, payment profile id. So, on my side I did everything correctly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I believe this is a bug on CIM.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;need help.&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;&lt;U&gt;&lt;EM&gt;&lt;STRONG&gt;Reference : On the guide&lt;/STRONG&gt; &lt;/EM&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For Refund Transactions&lt;BR /&gt;If you are submitting a refund against a previous CIM transaction, the following guidelines&lt;BR /&gt;apply:&lt;BR /&gt; include customerProfileId, customerPaymentProfileId, and transId.&lt;BR /&gt; customerShippingAddressId is optional.&lt;BR /&gt; creditCardNumberMasked, bankRoutingNumberMasked, and&lt;BR /&gt;bankAccountNumberMasked do not need to be included, but they will be validated if&lt;BR /&gt;they are included.&lt;BR /&gt;If you are submitting a refund for a non-CIM transaction, the following guidelines apply:&lt;BR /&gt; you must include transId, creditCardNumberMasked (or&lt;BR /&gt;bankRoutingNumberMasked and bankAccountNumberMasked).&lt;BR /&gt; do not include customerProfileId, customerPaymentProfileId, or&lt;BR /&gt;customerShippingAddressId.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Sep 2012 16:25:13 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-Refund-Transaction-has-a-bug/m-p/30168#M15795</guid>
      <dc:creator>tarim</dc:creator>
      <dc:date>2012-09-27T16:25:13Z</dc:date>
    </item>
    <item>
      <title>Re: CIM Refund Transaction has a bug</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-Refund-Transaction-has-a-bug/m-p/30172#M15797</link>
      <description>&lt;P&gt;1)Reason is 2) as it didn't see the ref profileID so it looking for a full cc#.&lt;/P&gt;&lt;P&gt;Did you add 'XXXX' for the masked cc#, e.g. XXXX6164&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2)For nullable fields, there is a xxxSpecified need to set to true if you are pass it in.&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;RefundCIM.customerProfileIdSpecified= true;&lt;/P&gt;&lt;P&gt;RefundCIM.customerPaymentProfileIdSpecified = true;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Sep 2012 16:35:45 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-Refund-Transaction-has-a-bug/m-p/30172#M15797</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2012-09-27T16:35:45Z</dc:date>
    </item>
    <item>
      <title>Re: CIM Refund Transaction has a bug</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-Refund-Transaction-has-a-bug/m-p/30176#M15799</link>
      <description>&lt;P&gt;Thank you very much for your help. I hope Authorize.NET need to update their SOAP Guide docmuents.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Sep 2012 18:00:41 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-Refund-Transaction-has-a-bug/m-p/30176#M15799</guid>
      <dc:creator>tarim</dc:creator>
      <dc:date>2012-09-27T18:00:41Z</dc:date>
    </item>
  </channel>
</rss>

