#kstefanova_docs
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
๐ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1286199296529530941
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Could you share an example Card ID (card_xxx), so that I can take a look how your integration works and advise accordingly?
Yes, from the test environment, is that ok?
Yup! That will be fine
card_1PgPzUCtUt8yBmIL7ltUYgpC
Before the transition in our integration we've created Cards through the Token API - first create a token, and then attach the card to the customer. In our business logic we use payment methods for off-session payments mostly.
Thanks for sharing! I can see the same in card_1PgPzUCtUt8yBmIL7ltUYgpC.
This can be done with https://docs.stripe.com/payments/payment-intents/migration - the only difference here is to use Setup Intent (for saving the payment method) at Step 1 instead of using Payment Intent. The remain steps work the same: https://docs.stripe.com/api/setup_intents/create
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
yes, we already done this. See pm_1PgQ1SCtUt8yBmILO7sJILoG. But I'm asking is there a migration guide in our dashboard like the one you prepared for transitioning SEPA sources to payment methods?
I can send a screenshot from the guide
I'm afraid we don't have a guide for like this for Card as Card is still compatible in Payment Intent: https://docs.stripe.com/payments/payment-methods/transitioning#compatibility
See there says Migrate SEPA DD sources, and nothing about cards
The non-card sources will be deprecated, but card is still supported for backward compatibility. We don't have a card migration tool like this in Dashboard
So the cards from the Cards API will be listed as Customer Payment methods as well, is that correct?
Yes, that's correct
If I want to retrieve a Card object from the PaymentMethods API will it return the object?
Or if i want to retrieve specific Card object from the customer payment methods and pass card_xxx, will this return the card object as payment method? (Like Customer.retrieve_payment_method(cus_xxx, card_xxxx))?
When retrieving a Card using a Payment Method API, it will return the card object (card_xxx)
What a relieve, thank you very very much! ๐ฏ
No problem! Happy to help ๐
Have a nice day!