#oleg-codaio
1 messages · Page 1 of 1 (latest)
Hi @visual wagon https://dashboard.stripe.com/settings/billing/invoice you only enable ACH and SEPA in the invoice payment page, if you want your customer to use card in hosted invoice page, you should enable card in this settings page.
For existing invoices, (e.g., in_1MYNyuAegRHrUhUqyzZeqQHn) you should programmatically add card to the payment_settings.payement_method_types (https://stripe.com/docs/api/invoices/update#update_invoice-payment_settings-payment_method_types) so that your customer can have card as payment option in the invoice page.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Hmm, I see. So even though the invoice would have normally been auto charged to the card on file, we need to explicitly enable cards as a payment method on the default invoice settings?
Yes you are right
Ok, thanks. Let me give that a shot!