Step-by-Step Guide to Recording 100% Off Transactions with Stripe Checkout
P粉764003519
2023-08-07 15:29:42
<p>I am currently using the Stripe Checkout PHP API for a website that jumps to Stripe Checkout for payment. Everything is working fine but a new request comes up from the client. The client wants their employees to be able to "purchase" items from their website, with these transactions recorded in Stripe's logs, and without the need for a credit card. <br /><br />I tried to solve this problem by setting the transaction value to 0, but Stripe does not allow this. Then I tried adding a 100% discount coupon to the transaction, but it was also not allowed. Finally, I tried creating a customer-level promo code, but again, any promo code that offered 100% off was not accepted by Stripe. <br /><br />Are there any other methods? A way to allow me to record these transactions in Stripe while allowing people to claim these items for free? What's a good, creative solution? </p><p><br /></p>
This is not possible because Stripe requires a minimum billing amount of $0.50 (or any currency) to create a charge.
I don't think you can get 100% discount on a payment on Stripe because Stripe doesn't pay.