We are use stripe payments method in a php script. We are getting the following error: Please suggest how we can fix it Answer You created the charge with amount=1. As the error message explicitly says, the minimum amount is 50 cents. All amounts in Stripe’s API are in cents, so amount must be at least …
Tag: stripe-payments
Stripe charge issue with stripe payment
What I’m doing is simple, using stripes JS code to charge a customer, like so.
Stripe making multiple customers with same email address
I have stripe check out with php. It creates customers and charges them. I want to create a donation form where if same customer comes back and gives with same email address that Stripe doesn’t create another customer but charges the existing customer with additional payments. Is this possible? Or does …