#elfeloe
1 messages · Page 1 of 1 (latest)
Yeah, you can just make an Update Payment Intent API call: https://stripe.com/docs/api/payment_intents/update
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
OK I'm asking because I read that and was previously told you cannot capture a higher amount than what the payment intent was originally created with.
So that changed and it is now possible to capture a higher amount, correct?
No. You have to capture an amount up to the amount of the Payment Intent. The API I sent you updates the amount on the Payment Intent.
Ok so for example. My shop receives an order for $20. The payment intent amount is $20.
In the special instructions I noticed they want something extra that costs $5 bringing the total to $25.
Can I update the payment intent amount to $25 and then capture the $25 ?
Yes