#jd_dev_
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- jd_dev_, 1 hour ago, 16 messages
- jd_dev_, 5 days ago, 11 messages
- junaid_abbasi999, 5 days ago, 9 messages
- junaid_abbasi999, 6 days ago, 35 messages
talking about this one
can someone explain me what it means and can i disable it?
That's ACSS debit payment method
https://stripe.com/docs/payments/acss-debit
I believe you can turn it off under payment method settings
https://dashboard.stripe.com/settings/payment_methods
is there any test values that i can test here?
but its only showing name and email feild
you can use any email i think
I can't disable this one, I see this in my dashboard
are you using Stripe Connect?
Is there a guide you're following for this?
Yes i am using stripe connect, and i just followed the documentations
can you share the link to the docs you followed?
Also, can you share the code you're using to create a PaymentIntent?
here i am using setup intent
wait
const setupIntent = await stripe.setupIntents.create({
customer: customer ? customer.id : customerId,
automatic_payment_methods: {
enabled: true,
allow_redirects: "never",
},
});
I am using hold so that's why this automatic payment methods is true
what do you mean by "hold"?
if you can't disable the payment method via the dashboard, you can omit it when creating the SetupIntent by specifying which payment methods you want to offer explicitly using payment_method_types parameter
https://stripe.com/docs/api/setup_intents/create#create_setup_intent-payment_method_types
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.