#awells-payment-intent
1 messages · Page 1 of 1 (latest)
Hey there! There are a couple of options here. When retrieving the payment intent, you can either look at the charges and inspect the payment_method_details.wallet.type to see if this is populated
https://stripe.com/docs/api/charges/object#charge_object-payment_method_details-card-wallet-type
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Alternateively, you can expand the payment_method and look at the same details here:
https://stripe.com/docs/api/payment_methods/object#payment_method_object-card-wallet
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Ace, thanks!
NP!