#King Of Web Devs - Invoice Payments
1 messages · Page 1 of 1 (latest)
Hello! Are you having them pay using the Stripe-hosted Invoice page or your via your own system?
stripe hosted page, we are creating the ivoice via the api which is then emailed to the customer, some customers would like to pay via card and others via bank transfer
You can adjust the payment methods you accept on that page here: https://dashboard.stripe.com/settings/billing/invoice
Click on Manage next to the payment methods.
there doesnt seem to be a pure BACS option especially for GBP
BACS is not available on Invoices: https://stripe.com/docs/payments/payment-methods/integration-options#payment-method-product-support
ok so is there no way to facilitate Bank Transfers in GBP or multi currency for invoices?
Not using BACS, no, sorry.
You would need to use another option listed in that table that supports Invoices and multiple currencies, like cards.
We need bank transfers for Invoices in GBP
in that case can i mark invoices as paid without the payment being facilitated by stripe?
Yes, you can mark an Invoice as paid out of band: https://stripe.com/docs/api/invoices/pay#pay_invoice-paid_out_of_band
brilliant and would that still mark the invoice as paid and fire all the usual webhooks?
presuming i can add a footer/template for all invoices allowing me to add bank transfer payment instructions?
Yep, with one small potential gotcha: only invoice.paid will fire. If you're using the older invoice.payment_succeeded that event will not fire.
and i can still part pay invoices etc with the paid out of band? Will that also fire the expected webhooks?