<?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: RefID not being returned  in get transaction detail in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/64147#M38123</link>
    <description>&lt;P&gt;I can confirm that this issue has not yet been fixed, but I am told that it has been escalated and is expected in an upcoming release.&lt;/P&gt;</description>
    <pubDate>Mon, 13 Aug 2018 14:01:34 GMT</pubDate>
    <dc:creator>coppercup</dc:creator>
    <dc:date>2018-08-13T14:01:34Z</dc:date>
    <item>
      <title>RefID not being returned  in get transaction detail</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/61406#M35858</link>
      <description>&lt;P&gt;I am trying to get the refId from the transaction details&amp;nbsp;related to a webhook response to a Hosted Accept page (the payment page works, get a token, getting the webhook response with no problems) and the refId (our order number) that is sent to the transaction is not getting returned in the refId from the get trans detail.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The code I use to set the refId is on getting the payment page:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;GetHostedPaymentPageRequest apiRequest = new GetHostedPaymentPageRequest();&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;apiRequest.setTransactionRequest(txnRequest);&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;apiRequest.setHostedPaymentSettings(alist);&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;apiRequest.setRefId(refId);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;GetHostedPaymentPageController controller = new GetHostedPaymentPageController(apiRequest);&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;controller.execute();&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;GetHostedPaymentPageResponse response = new GetHostedPaymentPageResponse();&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;response = controller.getApiResponse();&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The getting and using of the page works fine, but when I get the transaction deatils from the transactionId passed back in the webhook, it returns null for the refId.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The code I am using to get the transaction data works with no problem and is below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;public static GetTransactionDetailsResponse getAnetTransaction(String transactionId) &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;{&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;ApiOperationBase.setEnvironment(getEnvMode());&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;MerchantAuthenticationType merchantAuthenticationType = new MerchantAuthenticationType() ;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;merchantAuthenticationType.setName(CAPCP_PMT_VENDOR_ID_1);&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;merchantAuthenticationType.setTransactionKey(CAPCP_PMT_VENDOR_ID_2);&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;ApiOperationBase.setMerchantAuthentication(merchantAuthenticationType);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;GetTransactionDetailsRequest getRequest = new GetTransactionDetailsRequest();&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;getRequest.setMerchantAuthentication(merchantAuthenticationType);&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;getRequest.setTransId(transactionId);&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;GetTransactionDetailsController controller = new GetTransactionDetailsController(getRequest);&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;controller.execute();&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;GetTransactionDetailsResponse getResponse = controller.getApiResponse();&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;if (getResponse != null) &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;{&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;if (getResponse.getMessages().getResultCode() == MessageTypeEnum.OK) &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;{&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;System.out.println(new Date().toString() + " - &amp;gt;&amp;gt;&amp;gt;&amp;gt; getAnetTransaction: Got ANET transaction data for OrderNo: " + getResponse.getRefId());&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;}&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;else&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;{&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;System.out.println(new Date().toString() + " - &amp;gt;&amp;gt;&amp;gt;&amp;gt; getAnetTransaction: Failed to get transaction details: transactionId: " + transactionId &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;+ " ResultCode: "+ getResponse.getMessages().getResultCode());&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;}&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;}&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;return getResponse;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;}&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can someone let me know if I am missing something or this is the incorrect way to link a webhook to the order that is processed?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have not been able to find anything else on how to link a payment result to the initiating order that is linked to the webhook trans ID as the trans id does not seem to be returned with the page initialization.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for any help,&lt;/P&gt;&lt;P&gt;Ed&lt;/P&gt;</description>
      <pubDate>Sun, 28 Jan 2018 17:43:33 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/61406#M35858</guid>
      <dc:creator>synconnv1</dc:creator>
      <dc:date>2018-01-28T17:43:33Z</dc:date>
    </item>
    <item>
      <title>Re: RefID not being returned  in get transaction detail</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/61419#M35869</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21980"&gt;@synconnv1&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your post .&amp;nbsp; This is a bug in the Accept Hosted where refID is not getting passed correctly .&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Our team is currently working on a fix for it . We will update the post once we are near the release .&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also we are going to enhance our Webhook Notifications to return the merchantRefID and&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;invoiceNumber in the payload in an upcoming release .&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2018 06:22:21 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/61419#M35869</guid>
      <dc:creator>Anurag</dc:creator>
      <dc:date>2018-01-30T06:22:21Z</dc:date>
    </item>
    <item>
      <title>Re: RefID not being returned  in get transaction detail</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/61421#M35871</link>
      <description>&lt;P&gt;Hey Anurag,&lt;/P&gt;&lt;P&gt;Its good to know its a bug and I am not crazy, but the problem is my client wants to go live and with this bug I have not been able to find any other way to link the transaction coming back from the webhook to my system's order.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Until this gets fixed, how do I get some sort of reference back to my system so I can know what order the payment needs to be posted back to?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ed&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2018 13:45:30 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/61421#M35871</guid>
      <dc:creator>synconnv1</dc:creator>
      <dc:date>2018-01-30T13:45:30Z</dc:date>
    </item>
    <item>
      <title>Re: RefID not being returned  in get transaction detail</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/61432#M35882</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21980"&gt;@synconnv1&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As a workaround you can pass the refID in the invoiceNumber field under the order when calling the&amp;nbsp;getHostedPaymentPageRequest.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You should be getting back the invoiceNumber in the getTransactionDetails call .&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps .&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2018 22:42:14 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/61432#M35882</guid>
      <dc:creator>Anurag</dc:creator>
      <dc:date>2018-01-30T22:42:14Z</dc:date>
    </item>
    <item>
      <title>Re: RefID not being returned  in get transaction detail</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/63154#M37334</link>
      <description>&lt;P&gt;Has this been fixed ?&lt;/P&gt;</description>
      <pubDate>Tue, 22 May 2018 07:41:44 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/63154#M37334</guid>
      <dc:creator>shikhar</dc:creator>
      <dc:date>2018-05-22T07:41:44Z</dc:date>
    </item>
    <item>
      <title>Re: RefID not being returned  in get transaction detail</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/63156#M37336</link>
      <description>&lt;P&gt;Has this been fixed ?&lt;/P&gt;</description>
      <pubDate>Tue, 22 May 2018 07:48:34 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/63156#M37336</guid>
      <dc:creator>shikhar</dc:creator>
      <dc:date>2018-05-22T07:48:34Z</dc:date>
    </item>
    <item>
      <title>Re: RefID not being returned  in get transaction detail</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/64147#M38123</link>
      <description>&lt;P&gt;I can confirm that this issue has not yet been fixed, but I am told that it has been escalated and is expected in an upcoming release.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Aug 2018 14:01:34 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/64147#M38123</guid>
      <dc:creator>coppercup</dc:creator>
      <dc:date>2018-08-13T14:01:34Z</dc:date>
    </item>
    <item>
      <title>Re: RefID not being returned  in get transaction detail</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/64350#M38263</link>
      <description>&lt;P&gt;Also confirming that this still doesn't work.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Even if you set the refId on the original transaction, getTransactionDetails does NOT return the value in transRefId.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And to clarify, this is the transRefId field we're talking about.&amp;nbsp; Not the refTransId field (which would contain the original transaction Id for say a refund) and not the refId field (which would contain the refId value submitted with the getTransactionDetails request.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Aug 2018 22:39:52 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/64350#M38263</guid>
      <dc:creator>linvio</dc:creator>
      <dc:date>2018-08-31T22:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: RefID not being returned  in get transaction detail</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/64544#M38407</link>
      <description>&lt;P&gt;Glad I found this thread. Was struggling with this today, and frustrated that transRefId was coming back null. Hoping for a fix soon.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Sep 2018 01:15:43 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/64544#M38407</guid>
      <dc:creator>chawkins7</dc:creator>
      <dc:date>2018-09-20T01:15:43Z</dc:date>
    </item>
    <item>
      <title>Re: RefID not being returned  in get transaction detail</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/65862#M39474</link>
      <description>&lt;P&gt;Not fixed yet?&lt;/P&gt;</description>
      <pubDate>Thu, 17 Jan 2019 23:23:24 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/65862#M39474</guid>
      <dc:creator>mingjin918</dc:creator>
      <dc:date>2019-01-17T23:23:24Z</dc:date>
    </item>
    <item>
      <title>Re: RefID not being returned  in get transaction detail</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/66760#M40267</link>
      <description>&lt;P&gt;"RefID not being returned in get transaction detail" &lt;STRONG&gt;still doesn't work!&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This bug was first reported on 01-28-2018 09:43 AM, here we are over 13 months later, and it hasn't been fix.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Authorize has given developers barely 2 months to deal with the &lt;A href="https://community.developer.authorize.net/t5/News-and-Announcements/MD5-Hash-Removal-Disablement-March-28-2019-Updated/m-p/65585#M219" target="_blank"&gt;MD5 Hash Removal&lt;/A&gt; when it has taken them (Authorize) over 13 months to not fix a bug...&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2019 18:28:41 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/66760#M40267</guid>
      <dc:creator>arey</dc:creator>
      <dc:date>2019-03-05T18:28:41Z</dc:date>
    </item>
    <item>
      <title>Re: RefID not being returned  in get transaction detail</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/66761#M40268</link>
      <description>&lt;P&gt;"RefID not being returned in get transaction detail" &lt;STRONG&gt;still doesn't work!&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This bug was first reported on 01-28-2018 09:43 AM, here we are over 13 months later, and it hasn't been fix.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Authorize has given developers barely 2 months to deal with the &lt;A href="https://community.developer.authorize.net/t5/News-and-Announcements/MD5-Hash-Removal-Disablement-March-28-2019-Updated/m-p/65585#M219" target="_blank"&gt;MD5 Hash Removal&lt;/A&gt; when it has taken them (Authorize) over 13 months to not fix a bug...&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2019 18:29:24 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/66761#M40268</guid>
      <dc:creator>arey</dc:creator>
      <dc:date>2019-03-05T18:29:24Z</dc:date>
    </item>
    <item>
      <title>Re: RefID not being returned  in get transaction detail</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/66762#M40269</link>
      <description>&lt;P&gt;"RefID not being returned in get transaction detail" &lt;STRONG&gt;still doesn't work!&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This bug was first reported on 01-28-2018 09:43 AM, here we are over 13 months later, and it hasn't been fix.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Authorize has given developers barely 2 months to deal with the &lt;A href="https://community.developer.authorize.net/t5/News-and-Announcements/MD5-Hash-Removal-Disablement-March-28-2019-Updated/m-p/65585#M219" target="_blank"&gt;MD5 Hash Removal&lt;/A&gt; when it has taken them (Authorize) over 13 months to not fix a bug&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2019 18:32:32 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/66762#M40269</guid>
      <dc:creator>arey</dc:creator>
      <dc:date>2019-03-05T18:32:32Z</dc:date>
    </item>
    <item>
      <title>Re: RefID not being returned  in get transaction detail</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/67100#M40572</link>
      <description>&lt;P&gt;Hi All ,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This should be fixed now .&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;Anurag&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2019 05:47:31 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/67100#M40572</guid>
      <dc:creator>Anurag</dc:creator>
      <dc:date>2019-03-22T05:47:31Z</dc:date>
    </item>
    <item>
      <title>Re: RefID not being returned  in get transaction detail</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/68754#M41907</link>
      <description>&lt;P&gt;No, it is not fixed as 2019-08-15 and library version&amp;nbsp;2.0.1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also when I set the order property of&amp;nbsp;transactionRequest and set the&amp;nbsp;invoiceNumber, then I get error on the payment page:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Unexpected error. Please try again.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;poor naming conventions, poor implementaion.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Aug 2019 00:29:30 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/68754#M41907</guid>
      <dc:creator>inchol</dc:creator>
      <dc:date>2019-08-16T00:29:30Z</dc:date>
    </item>
    <item>
      <title>Re: RefID not being returned  in get transaction detail</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/69845#M42789</link>
      <description>&lt;P&gt;Has this been fixed yet?&amp;nbsp; Posts as of&amp;nbsp;&lt;SPAN&gt;2019-08-15 indicate not.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;This is important for us.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2019 22:54:23 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/69845#M42789</guid>
      <dc:creator>linvio</dc:creator>
      <dc:date>2019-11-27T22:54:23Z</dc:date>
    </item>
    <item>
      <title>Re: RefID not being returned  in get transaction detail</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/74625#M46418</link>
      <description>&lt;P&gt;The transrefid in getTransactionDetailsResponse is returning the value passed in "refId" while submitting/creating the transaction.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jan 2021 18:09:34 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/RefID-not-being-returned-in-get-transaction-detail/m-p/74625#M46418</guid>
      <dc:creator>LavyChava</dc:creator>
      <dc:date>2021-01-07T18:09:34Z</dc:date>
    </item>
  </channel>
</rss>

