Hi,
Is it possible to send the Item details in the recurring transaction?
FYI - we are using accept.js
Below is how we make the recurring call
ApiOperationBase<ANetApiRequest, ANetApiResponse>.MerchantAuthentication = new merchantAuthenticationType()
{
//All login details
};
paymentScheduleTypeInterval interval = new paymentScheduleTypeInterval();
interval.length = 1;
interval.unit = "monthly";
paymentScheduleType schedule = new paymentScheduleType
{
interval = interval,
startDate = DateTime.Now.AddDays(1), // start date should be tomorrow
totalOccurrences = 9999 // 999 indicates no end date
};
customerProfileIdType customerProfile = new customerProfileIdType()
{
customerProfileId = CustomerProfileId
,customerPaymentProfileId = CustomerPaymentProfileId
,customerAddressId = CustomerShippingAddressId
};
ARBSubscriptionType subscriptionType = new ARBSubscriptionType()
{
amount = Viewmodel.Amount,
paymentSchedule = schedule,
profile = customerProfile
};
var request = new ARBCreateSubscriptionRequest { subscription = subscriptionType };
var controller = new ARBCreateSubscriptionController(request);
controller.Execute(); //finally we execute.
Plesae guide us.
Thanks
Karthik.K
09-27-2019 02:14 PM
this was so helpful for me, even faced the same issue. talktowendys
03-23-2020 07:16 AM
09-14-2020 01:57 AM
Thanks for the clarification.
09-14-2020 10:18 AM
Thanks for addressing this topic. I was looking for the information regarding the same. Keep sharing the info upsers, kudos.
09-17-2020 09:32 PM
09-23-2020 11:51 PM
I am perusing these online journals consistent schedule and it gives more helpful and significant data much obliged for sharing Esurveyfaqs.com
09-27-2020 01:54 AM
I think we both are looking for a similar solution. And thanks to the community for being supportive to us.
Regards, Playbox HD Apk
10-20-2020 05:52 AM
Line items are not supported for ARBCreateSubscription.
Sample request:
https://developer.authorize.net/api/reference/index.html#recurring-billing-create-a-subscription
Full schema:
https://apitest.authorize.net/xml/v1/schema/AnetApiSchema.xsd
10-20-2020 02:56 PM
Such a great post really good infroamtion i have one doubt .
04-14-2021 05:38 AM