#ll0071 - CA PADs & subscriptions
1 messages · Page 1 of 1 (latest)
Hey there, what are the questions?
Ok so I use those instruction to collect a PAD (Canadian pre-authorized debit payment)payment method. https://stripe.com/docs/payments/acss-debit/accept-a-payment?platform=checkout
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?
See in the box here: https://stripe.com/docs/payments/acss-debit/accept-a-payment?platform=checkout#compatibility
Subscription mode: Contact us
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?
If so, you need to make sure you specify a recurring payment schedule for the mandate:
https://stripe.com/docs/payments/acss-debit/accept-a-payment?platform=checkout#enable-canadian-pre-authorized-debit-as-a-payment-method
payment_method_options[acss_debit][mandate_options][payment_schedule]
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
Sure, please share that
Customer : cus_MaxgmvTwnk0TMa
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?
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) :
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
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" ?
I jut mean using Stripe subscriptions, rather than making payments each cycle yourself
Yeah we are using Stripe subscriptions right now and we wanted to add PAD as a payment option to pay the subscription.
Ok this should be supported: https://stripe.com/docs/payments/acss-debit#get-started
The following Stripe products also support adding Canadian pre-authorized debit from the Dashboard:
Invoicing
Subscriptions
Then why it isn't showing up...
I'm not sure, still looking at your examples
Ahhh
You set these up today
PAD has an initial 3 day waiting period:
https://stripe.com/docs/payments/acss-debit#mandates
Your customers must receive confirmation of a new mandate at least 3 days before the first debit is issued (see Mandate and debit notification emails).
ll0071 - CA PADs & subscriptions
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!