<?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: Sandbox Transaction Details API Not Returning Transactions in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Sandbox-Transaction-Details-API-Not-Returning-Transactions/m-p/65596#M39233</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/26885"&gt;@MonthlyStash&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are these transaction done as part of ARB&amp;nbsp;?&amp;nbsp;If so you will not see the transaction in the&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://developer.authorize.net/api/reference/#transaction-reporting-get-customer-profile-transaction-list" target="_self" rel="nofollow noopener noreferrer"&gt;GetTransactionListForCustomerRequest&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;call, in the&amp;nbsp;&amp;nbsp;&lt;A href="https://developer.authorize.net/api/reference/#transaction-reporting-get-customer-profile-transaction-list" target="_self" rel="nofollow noopener noreferrer"&gt;GetTransactionListForCustomerRequest&lt;/A&gt;&amp;nbsp; you only see the transcations exclusively charged against the customer profile.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;You will be able to get these transaction in the&amp;nbsp;&lt;A href="https://developer.authorize.net/api/reference/#recurring-billing-get-subscription" target="_self" rel="nofollow noopener noreferrer"&gt;ARBGetSubscriptionRequest&lt;/A&gt;&amp;nbsp;response. But as I cann see you are not getting these transaction, I believe you&amp;nbsp;might have missed to set the flag &lt;STRONG&gt;&lt;EM&gt;includeTransactions&lt;/EM&gt;&lt;/STRONG&gt; as &lt;STRONG&gt;true&lt;/STRONG&gt;, and hence you are not getting any transactions in response.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;You need to add something like to your&amp;nbsp;ARBGetSubscriptionRequest&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;    request.includeTransactions = true&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Happy Coding&amp;nbsp;!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Kaushik&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 04 Jan 2019 10:30:40 GMT</pubDate>
    <dc:creator>kikmak42</dc:creator>
    <dc:date>2019-01-04T10:30:40Z</dc:date>
    <item>
      <title>Sandbox Transaction Details API Not Returning Transactions</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Sandbox-Transaction-Details-API-Not-Returning-Transactions/m-p/64915#M38691</link>
      <description>&lt;P&gt;I'm using the Ruby library to try and get the transaction history for either a customer or an ARB subscription.&lt;/P&gt;&lt;P&gt;I've tried using&amp;nbsp;&lt;A href="https://github.com/AuthorizeNet/sample-code-ruby/blob/master/RecurringBilling/get-subscription.rb" target="_self"&gt;ARBGetSubscriptionRequest&lt;/A&gt;&amp;nbsp;and&amp;nbsp;&lt;A href="https://github.com/AuthorizeNet/sample-code-ruby/blob/master/TransactionReporting/get-customer-profile-transaction-list.rb" target="_self"&gt;GetTransactionListForCustomerRequest&lt;/A&gt;&amp;nbsp;in both cases no transaction data is coming back.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I confirmed the&amp;nbsp;&lt;SPAN&gt;Transaction Details API is enabled.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The transactions are reported in the UI:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;IMG src="https://community.developer.cybersource.com/t5/image/serverpage/image-id/582i0B3C95D12403D332/image-size/original?v=1.0&amp;amp;px=-1" border="0" alt="Screen Shot 2018-10-31 at 1.54.14 AM.png" title="Screen Shot 2018-10-31 at 1.54.14 AM.png" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Here's a code sample:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;transaction = Transaction.new(api_login_id, transaction_key, gateway: 'sandbox')

request = GetTransactionListForCustomerRequest.new
request.customerProfileId = '1505270746'
response = transaction.get_transaction_list_for_customer(request)

response.transactions
=&amp;gt; nil

###

request = ARBGetSubscriptionRequest.new
request.subscriptionId = '5341988'
response = transaction.arb_get_subscription_request(request)

response.subscription.arbTransactions
=&amp;gt; nil&lt;/PRE&gt;</description>
      <pubDate>Wed, 31 Oct 2018 06:02:10 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Sandbox-Transaction-Details-API-Not-Returning-Transactions/m-p/64915#M38691</guid>
      <dc:creator>MonthlyStash</dc:creator>
      <dc:date>2018-10-31T06:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: Sandbox Transaction Details API Not Returning Transactions</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Sandbox-Transaction-Details-API-Not-Returning-Transactions/m-p/65596#M39233</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/26885"&gt;@MonthlyStash&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are these transaction done as part of ARB&amp;nbsp;?&amp;nbsp;If so you will not see the transaction in the&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://developer.authorize.net/api/reference/#transaction-reporting-get-customer-profile-transaction-list" target="_self" rel="nofollow noopener noreferrer"&gt;GetTransactionListForCustomerRequest&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;call, in the&amp;nbsp;&amp;nbsp;&lt;A href="https://developer.authorize.net/api/reference/#transaction-reporting-get-customer-profile-transaction-list" target="_self" rel="nofollow noopener noreferrer"&gt;GetTransactionListForCustomerRequest&lt;/A&gt;&amp;nbsp; you only see the transcations exclusively charged against the customer profile.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;You will be able to get these transaction in the&amp;nbsp;&lt;A href="https://developer.authorize.net/api/reference/#recurring-billing-get-subscription" target="_self" rel="nofollow noopener noreferrer"&gt;ARBGetSubscriptionRequest&lt;/A&gt;&amp;nbsp;response. But as I cann see you are not getting these transaction, I believe you&amp;nbsp;might have missed to set the flag &lt;STRONG&gt;&lt;EM&gt;includeTransactions&lt;/EM&gt;&lt;/STRONG&gt; as &lt;STRONG&gt;true&lt;/STRONG&gt;, and hence you are not getting any transactions in response.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;You need to add something like to your&amp;nbsp;ARBGetSubscriptionRequest&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;    request.includeTransactions = true&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Happy Coding&amp;nbsp;!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Kaushik&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jan 2019 10:30:40 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Sandbox-Transaction-Details-API-Not-Returning-Transactions/m-p/65596#M39233</guid>
      <dc:creator>kikmak42</dc:creator>
      <dc:date>2019-01-04T10:30:40Z</dc:date>
    </item>
    <item>
      <title>Re: Sandbox Transaction Details API Not Returning Transactions</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Sandbox-Transaction-Details-API-Not-Returning-Transactions/m-p/68599#M41772</link>
      <description>&lt;P&gt;Is there a way to pull all the transactions for a customerProfileId or merchantCustomerId?&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2019 22:37:38 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Sandbox-Transaction-Details-API-Not-Returning-Transactions/m-p/68599#M41772</guid>
      <dc:creator>seskandaryan87</dc:creator>
      <dc:date>2019-07-30T22:37:38Z</dc:date>
    </item>
  </channel>
</rss>

