#ll0071 - CA PADs & subscriptions

1 messages · Page 1 of 1 (latest)

worldly gobletBOT
steady hemlock
#

Hey there, what are the questions?

meager dagger
#

The payment method is correctly recorded on Stripe, but I cant pay Subscription payment with it. It only give me the option when paying a normal payment..

#

Do I need to pass in a special parameter when creating the payment method in order to accept subscription payment?

steady hemlock
#

Click "contact us" which is set up to email our team about this. Please share details of your use case in that email.

#

Actually are you just using setup mode?

#

payment_method_options[acss_debit][mandate_options][payment_schedule]

meager dagger
#

yes, I specified "First day of every month". I tried sporadic parameter also but still not able to charge subscription payment with PAD.

#

I can send you the pm number is you want

steady hemlock
#

Sure, please share that

meager dagger
#

Customer : cus_MaxgmvTwnk0TMa

steady hemlock
#

ANd when you say you can't create subscriptions with it, what are you trying and what happens? Do you have some example failing request IDs?

meager dagger
#

PAD Payment method 1 : pm_1Ls9u3BAcMJSygvL43iRzViA

#

PAD Payment method 2 : pm_1Ls9mrBAcMJSygvLwkU3IeTf

#

PAD Payment method 3 : pm_1Ls9NJBAcMJSygvLOZRRR3tB

#

Here when I create a subscription ,under payment, I don't see all my PAD payment (only the card one can be selected) :

steady hemlock
#

Have you tried this using the API? I suspect that subscription contact might be the right next move, though, if you're using billing to manage recurring subscription payments

meager dagger
#

I did not try with the API. We always used the Stripe platform to collect/setup subscription payment with card. Now we just wanted to add PAD as new payment method to pay.

#

What do you mean by "using billing to manage recurring subscription payments" ?

steady hemlock
#

I jut mean using Stripe subscriptions, rather than making payments each cycle yourself

meager dagger
#

Yeah we are using Stripe subscriptions right now and we wanted to add PAD as a payment option to pay the subscription.

steady hemlock
meager dagger
#

Then why it isn't showing up...

steady hemlock
#

I'm not sure, still looking at your examples

#

Ahhh

#

You set these up today

#

ll0071 - CA PADs & subscriptions

meager dagger
#

So in 3 days I should be able to charge ?

#

How come I can charge normal payment tho ?

#

I think I did it!!!!

#

Needed to pass this in the checkout

#

AcssDebit = new SessionPaymentMethodOptionsAcssDebitOptions
{
Currency = "cad",
MandateOptions = new SessionPaymentMethodOptionsAcssDebitMandateOptionsOptions
{
DefaultFor = new List<string> { "invoice", "subscription" },
TransactionType = "personal",
},
//VerificationMethod = "instant",
},

#

"DefaultFor" parameter

#

Thank you for support!