#mrdatabase
1 messages · Page 1 of 1 (latest)
Hello! Can you give me a request ID showing the error? Here's how you can find a request ID: https://support.stripe.com/questions/finding-the-id-for-an-api-request
That request is to create a Payment Intent. The parameters you've provided indicate how the Payment Intent should be configured, but in order to proceed you need to specify where the money is coming from. That's where the Payment Method comes in: the Payment Method is the object that represents the payment info used to pay. You haven't specified one yet, so the Payment Intent has a status of requires_payment_method because you can't proceed to the next step without one.
Yes, I did this then the status changes to "requires_confirmation" not "require_capture"
That must have happened on a different Payment Intent, can you give me the request ID for that one?
req_EF5l3MQa4i1aMP
That request is also to create a Payment Intent. That time you specified a Payment Method, but you didn't set confirm to true, so the Payment Intent hasn't attempted to place a hold on the funds. I recommend you read about the Payment Intent lifecycle here: https://stripe.com/docs/payments/paymentintents/lifecycle
What are you trying to build exactly?
arh got it!