<?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: Amount Update for ARB Subscription in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Amount-Update-for-ARB-Subscription/m-p/27580#M14578</link>
    <description>&lt;P&gt;I figured out the issue i.e., whenever you are updating amount using Update Webmethod you also need to set subscription.AmountSpecified = true;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This resolved my problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Hemanth&lt;/P&gt;</description>
    <pubDate>Mon, 02 Jul 2012 05:26:27 GMT</pubDate>
    <dc:creator>HemanthKakumanu</dc:creator>
    <dc:date>2012-07-02T05:26:27Z</dc:date>
    <item>
      <title>Amount Update for ARB Subscription</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Amount-Update-for-ARB-Subscription/m-p/27564#M14570</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to update plan amount for one of the subscription ID i.e., for example user wanted to upgrade to advanced plan starting next month and he clicked on Update Subscription I would like to update the amount to 75$ from the current 50$.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I did call the&amp;nbsp;ARBUpdateSubscription method with parameter as subscriptionID and the amount field in&amp;nbsp;ARBSubscriptionType. Although I get the responseType as OK I do not see the amount getting updated in my subscription.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Hemanth&lt;/P&gt;</description>
      <pubDate>Sat, 30 Jun 2012 21:49:56 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Amount-Update-for-ARB-Subscription/m-p/27564#M14570</guid>
      <dc:creator>HemanthKakumanu</dc:creator>
      <dc:date>2012-06-30T21:49:56Z</dc:date>
    </item>
    <item>
      <title>Re: Amount Update for ARB Subscription</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Amount-Update-for-ARB-Subscription/m-p/27568#M14572</link>
      <description>&lt;P&gt;Post code, preferably in a code box (5th option from the left in Rich Text mode).&lt;/P&gt;</description>
      <pubDate>Sun, 01 Jul 2012 00:25:11 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Amount-Update-for-ARB-Subscription/m-p/27568#M14572</guid>
      <dc:creator>TJPride</dc:creator>
      <dc:date>2012-07-01T00:25:11Z</dc:date>
    </item>
    <item>
      <title>Re: Amount Update for ARB Subscription</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Amount-Update-for-ARB-Subscription/m-p/27570#M14573</link>
      <description>&lt;PRE&gt;public static bool UpdateSubscriptionPlan(long AuthsubscriptionID, decimal planAmount)
        {
            bool bResult = true;

            MerchantAuthenticationType authentication = PopulateMerchantAuthentication();

            ARBSubscriptionType subscription = new ARBSubscriptionType();
           
            UpdateSubscriptionforAmount(subscription, planAmount);

            ARBUpdateSubscriptionResponseType response;
            response = _webservice.ARBUpdateSubscription(authentication, AuthsubscriptionID, subscription);

            if (response.resultCode == MessageTypeEnum.Ok)
                bResult = true;
            else
                bResult = false;

            return bResult;
        }


 private static void UpdateSubscriptionforAmount(ARBSubscriptionType subscription, decimal planAmount)
        {
            subscription.amount = planAmount;
        }&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Please help!&lt;/P&gt;</description>
      <pubDate>Sun, 01 Jul 2012 12:01:08 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Amount-Update-for-ARB-Subscription/m-p/27570#M14573</guid>
      <dc:creator>HemanthKakumanu</dc:creator>
      <dc:date>2012-07-01T12:01:08Z</dc:date>
    </item>
    <item>
      <title>Re: Amount Update for ARB Subscription</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Amount-Update-for-ARB-Subscription/m-p/27576#M14576</link>
      <description>&lt;P&gt;Only the subscription ID is required, so it's possible something is going wrong with the amount assignment and then no amount is being passed and therefore nothing is being updated even though you get back a success code. My advice would be to do a dump of the data just before it's passed to Authorize.net and then a dump of what comes back, so you can take a look and be 100% sure you know what's going on.&lt;/P&gt;</description>
      <pubDate>Sun, 01 Jul 2012 19:34:53 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Amount-Update-for-ARB-Subscription/m-p/27576#M14576</guid>
      <dc:creator>TJPride</dc:creator>
      <dc:date>2012-07-01T19:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: Amount Update for ARB Subscription</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Amount-Update-for-ARB-Subscription/m-p/27580#M14578</link>
      <description>&lt;P&gt;I figured out the issue i.e., whenever you are updating amount using Update Webmethod you also need to set subscription.AmountSpecified = true;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This resolved my problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Hemanth&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jul 2012 05:26:27 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Amount-Update-for-ARB-Subscription/m-p/27580#M14578</guid>
      <dc:creator>HemanthKakumanu</dc:creator>
      <dc:date>2012-07-02T05:26:27Z</dc:date>
    </item>
  </channel>
</rss>

