#ara
1 messages · Page 1 of 1 (latest)
Hi there, yes the minimum amount needs to be > 0.5. A workaround is to use invoice API to create an invoice of amount < 0.5. However the customer will only be required to pay if the sum of accumulate invoices is > 0.5
For instance, you issue a invoice of $0.4 to cusA, the invoice is marked paid because the amount is less the minimum amount.
You issue another invoice of $0.4 to cusA, although the amount is $0.4, the customer needs to pay $0.8, because a $0.4 is carried forward from the previous invoice.
Hey Jack! Hmmm... okay. I think I will write a custom implementation without the use of stripe instead. Would be great if there was no minimum amount required. Has this been requested by customers for the payments intent api? I know that checkout sessions provides no cost orders.
payment mode checkout session can't have zero amount either.
https://stripe.com/docs/payments/checkout/no-cost-orders?ui=embedded#full-cost-discounts
This is the one I meant.
Appreciate the help. Thanks!