#nickderobertis
1 messages ยท Page 1 of 1 (latest)
Yes, you can save Payment Methods that are created through Apple and Google pay
If you wanted to list the PaymentMethods that are from apple/google pay
You'd need to list all type: card PaymentMethods and then do additional filtering yourself to check for carad.wallet on the PaymentMethods (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.
Hmm so by the way you phrased it, do we get access to each of the cards they have added in Apple/Google pay as individual payment methods classified as cards, rather than one payment method for e.g. Google Pay as a whole?
Let me back up - when a user pays for something with Google or Apple Pay, we create a PaymentMethod that represents a single one of their cards (which they get to choose from). Does that clear things up?
So they click Apple/Google pay -> they select a card in Apple/Google UI -> Stripe gets a payment method representing that card?
(with wallet attribute defined)
Yup (but small clarification, Stripe will get the payment method after the customer actually finishes/closes out the google pay/apply pay ui
ok makes sense. thank you!
Are there any payment methods in Apple/Google pay that are not cards?
Guessing no since you said list all with type: card
They should all be cards ๐
ok great. thanks for all your help!