#adeang47

1 messages · Page 1 of 1 (latest)

slate nimbusBOT
cobalt thicket
#

This is possible, though complex. You would need to setup Payment Methods for future usage first: https://stripe.com/docs/payments/save-and-reuse

Once you did that and knew the Payment Method's type, you would need to create Invoices with separate Invoice Items for the product and the fee(s) you're charging: https://stripe.com/docs/invoicing

Learn how to save card details and charge your customers later.

Create and manage invoices for one-time payments with Stripe Invoicing.

celest anvil
#

thank you! how do you specify which invoice item is for which payment method? is that done in the invoice item metadata?

tame walrus
#

Yeah if you want to make a note of what payment method type, metadata is fine

celest anvil
#

just want to make sure im understanding this. lets say i have an invoice for product x which is $1,000. i allow users to pay with ACH or credit card. i would create an invoice with 2 invoice items. 1 invoice item is for credit cards payments and the other is for ACH payments. is that right?

tame walrus
#

No. So you'd want to set up their payment method for future usage as outlined above first. Then, you'll know the payment method type, so you can create invoice items for 1) the product they're paying for and 2) the fees associated with that payment method and invoice them.

celest anvil
#

ah, so i need to create the invoice after i know which payment method they're using.

tame walrus
#

Yup that's why two-shoes said it's complex

celest anvil
#

gotcha, thanks!