#daniel-connect
1 messages · Page 1 of 1 (latest)
@tropic pebble sure, you definitely can. Overall the guide is https://stripe.com/docs/payments/save-during-payment for instance and you can adapt it to the specific way you use Connect. You'd never use the Charges API(but I'm aware of a couple of places in the docs that still use it). Happy to help more specifically
I see!
Would it be possible for me to implement a save card form and offer my customers the possibility to pick a saved card?
Also if I use the provided method, how would I be able to fetch the cards so that I can show my customer which cards are saved?
This is an example from Mega's implementation with stripe and I can see that I can view my card in the account, could you point me in the documentation on how to implement this?
I really can't find anything about this :(
@vital vault Thanks a bunch for helping me :)
it is yes. There's no Stripe component for that but it's something you can build with bespoke code and our API.
that's all bespoke logic they've built, but you're right we don't really have any specific guide. It will look different for everyone. The idea is you call that API I linked, it gives you the details of the saved cards(brand/last4 etc) and you can use that information in the frontend UI pages you build.
I see, that makes sense.
Is the only possibility of saving payment methods through actual charges? Can I not implement an interface to add cards to?
you can save card without charging them yes (https://stripe.com/docs/payments/save-and-reuse, it's what the SetupIntent API is for)