cancel
Showing results for 
Search instead for 
Did you mean: 

C# SDK - ARB UpdateSubscriptioin can change amount?

Hi.

Now i am working on the Automatic Recurring Billing.

Creation of ARB is no problem. I can create.

And also i can update the subscription of ARB such as card number.

but even though I change the amount and card number when i update the subscription of ARB, 

Update of subscription is done sucessfully, and only card number is changed. the amount didn't changed.

 

I have used ARBUpdateSubscriptionRequest class for updating.

 

Can i update the amount of Subscription?

 

Regards.

3 REPLIES 3

You should be able to update the amount, or at least I can do that with the PHP API.

TJPride
Expert

I am having the same issue. I can create, delete, and even update most properties of the subscription... but not the amount...

 

The response from the test server says successful, but the amount never changes.

 

Can anyone shed some light on this issue?

 

Using C# / VS 2010

 

webinno01
Member

Figured it out...

 

You have to set "amountSpecified" = true

 

Example:

            var sub = new ARBSubscriptionType();
            sub.amount = (decimal) 1.23;
            sub.amountSpecified = true;

webinno01
Member