#crochetpomelo-terminal-card-details
1 messages ยท Page 1 of 1 (latest)
Hi ๐
That information will be in the payment_method_details.card_present property on the related Charge object
Hello, the doc says that The following fields become available in the PaymentIntent object as soon as the payment is confirmed. but the details you shared are in the charges object
The Charge object is related to the payment Intent through the latest_charge property on the Payment Intent
https://stripe.com/docs/api/payment_intents/object#payment_intent_object-latest_charge
right, but that means i have to do a separate expand call to get that information instead of seeing it in the PI automatically?
I'm double checking on my test integration but I'm pretty sure that is correct.
Are you using Server drive integration?
yes
Okay this will be returned by default in the response when you call the process_payment_intent function on your server side.
The Payment Intent returned will include the charge and payment method details by default which includes the funding property you are looking for.
got it, thank you so much!