#gunwant_dev
1 messages · Page 1 of 1 (latest)
Hello
Please help me.
Can you share a pi_xxx where you don't see the payment methods?
Taking a look!
Payment Intents generated by an Invoice don't use automatic payment methods, they use the configuration from here: https://dashboard.stripe.com/settings/billing/invoice
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Its show Available.
I don't believe it does, unfortunately. You need to activate your account
But I'm working in development.
Is it required to active my account?
Hello
I'm waiting.
We are, please be patient. We're also helping other users
Okay, Sure. Take your time.
I'd recommend passing the payment_settings[payment_method_types] parameter when creating your Invoice: https://stripe.com/docs/api/invoices/create#create_invoice-payment_settings-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.
That should override the default settings for your invoice, and the requirement to activate
Okay, Let me check it.
HI.
Invalid payment_settings[payment_method_types][0]: must be one of ach_credit_transfer, ach_debit, acss_debit, au_becs_debit, bacs_debit, bancontact, boleto, card, cashapp, customer_balance, eps, fpx, giropay, grabpay, ideal, konbini, link, p24, paynow, promptpay, sepa_debit, sofort, us_bank_account, or wechat_pay
So How can be enabled affirm, afterpay-clearpay, and klarna?
I guess some of them don't support Invoices. For example, non of the BNPL types do: https://stripe.com/docs/payments/payment-methods/integration-options#support-buy-now-pay-later
Why specifically do you need to use an Invoice?
It's not required, If you can suggest me another way for that.
Sure, you can just create a Payment Intent directly do use with the Payment Element. All those payment methods you described should be supported that way: https://stripe.com/docs/payments/accept-a-payment?platform=web&ui=elements
Payment Intents don't support coupons, and you'd need to use the separate Tax API: https://stripe.com/docs/tax/custom
Have you considered using Checkout which supports both, as well as Klarna, etc: https://stripe.com/docs/payments/checkout
Thank you