<?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 Remaining Billing Cycles on ARB in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Remaining-Billing-Cycles-on-ARB/m-p/49708#M25249</link>
    <description>&lt;P&gt;I'm working in C# .net, and am trying to "renew" annual subscriptions. In this business case however, doing this does not add 12 billing cycles, instead it needs to be a total of 12 billing cycles from the time this update is called. In other words, if someone renews 6 months into a 12 month plan, the billing cycles needs to be set to 12, not 18. Will the following do this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;SubscriptionGateway gate = new SubscriptionGateway( _apiLogin, _transactionKey );
subscription = SubscriptionRequest.CreateMonthly( email, subscriptionName, amount );&lt;BR /&gt;subscription.SubscriptionID = subscriptionId;
subscription.BillingCycles = 12;
actual = gate.UpdateSubscription( subscription );&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;IE, will this ovveride any remaining cycles, and set the total reamining cycles to 12, as of when this is called?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, is there a way to NOT have to specify the amount, as I don't want to change it, and not having to lookup what the amount should be would be a nice timesaver.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance for shedding light on this.&lt;/P&gt;</description>
    <pubDate>Wed, 18 Feb 2015 19:58:05 GMT</pubDate>
    <dc:creator>bobbydoogle</dc:creator>
    <dc:date>2015-02-18T19:58:05Z</dc:date>
    <item>
      <title>Remaining Billing Cycles on ARB</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Remaining-Billing-Cycles-on-ARB/m-p/49708#M25249</link>
      <description>&lt;P&gt;I'm working in C# .net, and am trying to "renew" annual subscriptions. In this business case however, doing this does not add 12 billing cycles, instead it needs to be a total of 12 billing cycles from the time this update is called. In other words, if someone renews 6 months into a 12 month plan, the billing cycles needs to be set to 12, not 18. Will the following do this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;SubscriptionGateway gate = new SubscriptionGateway( _apiLogin, _transactionKey );
subscription = SubscriptionRequest.CreateMonthly( email, subscriptionName, amount );&lt;BR /&gt;subscription.SubscriptionID = subscriptionId;
subscription.BillingCycles = 12;
actual = gate.UpdateSubscription( subscription );&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;IE, will this ovveride any remaining cycles, and set the total reamining cycles to 12, as of when this is called?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, is there a way to NOT have to specify the amount, as I don't want to change it, and not having to lookup what the amount should be would be a nice timesaver.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance for shedding light on this.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Feb 2015 19:58:05 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Remaining-Billing-Cycles-on-ARB/m-p/49708#M25249</guid>
      <dc:creator>bobbydoogle</dc:creator>
      <dc:date>2015-02-18T19:58:05Z</dc:date>
    </item>
    <item>
      <title>Re: Remaining Billing Cycles on ARB</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Remaining-Billing-Cycles-on-ARB/m-p/49710#M25250</link>
      <description>&lt;P&gt;&lt;A target="_blank" href="https://github.com/AuthorizeNet/sdk-dotnet/blob/master/Authorize.NET/ARB/SubscriptionRequest.cs"&gt;https://github.com/AuthorizeNet/sdk-dotnet/blob/master/Authorize.NET/ARB/SubscriptionRequest.cs&lt;/A&gt;&lt;/P&gt;&lt;P&gt;show there is a &lt;SPAN class="pl-en"&gt;CreateNew&lt;/SPAN&gt;()&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;BillingCycles is from the startdate, and when a ARB have started, you can't change the startdate anymore.&lt;/P&gt;&lt;P&gt;So in your example, either cancel and create a new ARB with 12 months or continue with 18 months.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Feb 2015 20:23:18 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Remaining-Billing-Cycles-on-ARB/m-p/49710#M25250</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2015-02-18T20:23:18Z</dc:date>
    </item>
    <item>
      <title>Re: Remaining Billing Cycles on ARB</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Remaining-Billing-Cycles-on-ARB/m-p/49712#M25252</link>
      <description>&lt;P&gt;Is there any way to get/request the current subscription cycle, or remaining cycles? In this case cancelling and creating a new one is not an option as we don't store any payment information on our server.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Feb 2015 22:24:40 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Remaining-Billing-Cycles-on-ARB/m-p/49712#M25252</guid>
      <dc:creator>bobbydoogle</dc:creator>
      <dc:date>2015-02-18T22:24:40Z</dc:date>
    </item>
    <item>
      <title>Re: Remaining Billing Cycles on ARB</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Remaining-Billing-Cycles-on-ARB/m-p/49713#M25253</link>
      <description>&lt;P&gt;Nothing that allow you to get for just one subscriptionID&lt;/P&gt;&lt;P&gt;They only have one to get all subscription&lt;/P&gt;&lt;P&gt;&lt;EM&gt;ARBGetSubscriptionList&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Feb 2015 22:51:29 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Remaining-Billing-Cycles-on-ARB/m-p/49713#M25253</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2015-02-18T22:51:29Z</dc:date>
    </item>
  </channel>
</rss>

