<?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: ARB subscription payments in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARB-subscription-payments/m-p/17008#M9544</link>
    <description>&lt;P&gt;1) If by silent post you mean the callback page, then yes. Your callback page will need to store the transaction ID's, ideally.&amp;nbsp; Though you can also get a list of settled transactions via the transaction details API by accessing batches, then transactions, then transaction details - so long as you have a customer ID in each transaction.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2) Yes, using the transaction ID's. The transaction data is also passed to the callback page in the form of a bunch of $_POST variables - you can log $_POST to a text file using the following to get an idea of what the data looks like:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;$logfile = "path to log file";
$handle = fopen($logfile, 'a');﻿
fwrite($handle, print_r($_POST, true));﻿&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 11 Sep 2011 09:55:54 GMT</pubDate>
    <dc:creator>TJPride</dc:creator>
    <dc:date>2011-09-11T09:55:54Z</dc:date>
    <item>
      <title>ARB subscription payments</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARB-subscription-payments/m-p/17004#M9542</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I wanted to clarify a few things about the ARB option.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. There is no other way to get the transactions except by Silent Post and email within ARB?&lt;/P&gt;&lt;P&gt;2. Can I get these transactions via the &lt;A target="_self" href="http://developer.authorize.net/api/transaction_details/"&gt;Transactions Details API&lt;/A&gt;?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Roman&lt;/P&gt;</description>
      <pubDate>Sun, 11 Sep 2011 04:22:43 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARB-subscription-payments/m-p/17004#M9542</guid>
      <dc:creator>rroyter</dc:creator>
      <dc:date>2011-09-11T04:22:43Z</dc:date>
    </item>
    <item>
      <title>Re: ARB subscription payments</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARB-subscription-payments/m-p/17008#M9544</link>
      <description>&lt;P&gt;1) If by silent post you mean the callback page, then yes. Your callback page will need to store the transaction ID's, ideally.&amp;nbsp; Though you can also get a list of settled transactions via the transaction details API by accessing batches, then transactions, then transaction details - so long as you have a customer ID in each transaction.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2) Yes, using the transaction ID's. The transaction data is also passed to the callback page in the form of a bunch of $_POST variables - you can log $_POST to a text file using the following to get an idea of what the data looks like:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;$logfile = "path to log file";
$handle = fopen($logfile, 'a');﻿
fwrite($handle, print_r($_POST, true));﻿&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Sep 2011 09:55:54 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARB-subscription-payments/m-p/17008#M9544</guid>
      <dc:creator>TJPride</dc:creator>
      <dc:date>2011-09-11T09:55:54Z</dc:date>
    </item>
    <item>
      <title>Re: ARB subscription payments</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARB-subscription-payments/m-p/17030#M9555</link>
      <description>&lt;P&gt;I see. So Customer ID is what I generate in the ARBCreateSubscription call, or do I need to create that entry with Authorize API first?&lt;/P&gt;</description>
      <pubDate>Mon, 12 Sep 2011 15:18:28 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARB-subscription-payments/m-p/17030#M9555</guid>
      <dc:creator>rroyter</dc:creator>
      <dc:date>2011-09-12T15:18:28Z</dc:date>
    </item>
    <item>
      <title>Re: ARB subscription payments</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARB-subscription-payments/m-p/17034#M9557</link>
      <description>&lt;P&gt;Custotmer ID would be something generated by your own database and passed as one of the values to Authorize.net, so when the callback gets triggered on a successful charge, the callback page then knows which of your customers to assign it to in your database. Otherwise, how does your system know who's paid up to date?&lt;/P&gt;</description>
      <pubDate>Mon, 12 Sep 2011 16:52:49 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARB-subscription-payments/m-p/17034#M9557</guid>
      <dc:creator>TJPride</dc:creator>
      <dc:date>2011-09-12T16:52:49Z</dc:date>
    </item>
    <item>
      <title>Re: ARB subscription payments</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARB-subscription-payments/m-p/17038#M9559</link>
      <description>&lt;P&gt;Well, to avoid PCI compliance headache I actually do not want to save the billing info on my server at all and let the ARB figure out whom to charge. But I see now, that I can just generate an ID for a customer and it should be enough to get access to payments.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Sep 2011 17:03:59 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARB-subscription-payments/m-p/17038#M9559</guid>
      <dc:creator>rroyter</dc:creator>
      <dc:date>2011-09-12T17:03:59Z</dc:date>
    </item>
    <item>
      <title>Re: ARB subscription payments</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARB-subscription-payments/m-p/17046#M9563</link>
      <description>&lt;P&gt;You don't have to store anything on your side except date and amount of charge (if you want to provide your users with a billing history), and subscription ID (if you want the ability to update the billing info later). I suppose if you have the subscription ID, there's probably even a way to access the charge information directly, though I prefer to have at least a summary in my db so I can run statistics without requesting a bunch of records from Authorize.net.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Sep 2011 22:16:48 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARB-subscription-payments/m-p/17046#M9563</guid>
      <dc:creator>TJPride</dc:creator>
      <dc:date>2011-09-12T22:16:48Z</dc:date>
    </item>
  </channel>
</rss>

