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.
03-20-2012 06:42 PM
You should be able to update the amount, or at least I can do that with the PHP API.
03-20-2012 08:09 PM
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
04-26-2012 09:49 PM
Figured it out...
You have to set "amountSpecified" = true
Example:
var sub = new ARBSubscriptionType();
sub.amount = (decimal) 1.23;
sub.amountSpecified = true;
04-26-2012 10:00 PM