#gyungi
1 messages · Page 1 of 1 (latest)
Hey there
howdy!
Hmm yes that info should still be in the payment_method_details, is it not?
Yep
You should see it here: https://stripe.com/docs/api/charges/object#charge_object-payment_method_details-card_present
In the payment_method_details.card_present hash
got it, so it doesn't exist on the PaymentMethod object but it does exist on the PaymentMethodDetails object inside the PaymentIntent?
this is what I was initially looking at
these are fields on the PaymentMethod object
Ah yeah that's correct. We don't allow you to retrieve a card_present PaymentMethod since it is considered single-use. If you are using a "save card" flow, then you can retrieve the generated_card (https://stripe.com/docs/api/charges/object#charge_object-payment_method_details-card_present-generated_card) but that doesn't really make sense since you are already looking at the Charge which contains the same info
got it, so to access it after the fact I need to grab the payment method details from the last charge?
Yes that would be the recommended way
cool. Thanks so much!! Really appreciate it