#sg_source-migration
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/1290404022888693782
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- sg-pushpaveni_code, 3 days ago, 26 messages
- sg_webhooks-bug, 5 days ago, 24 messages
When you access payment_method_details, what type of object are you working with? Can you share an example?
The PaymentMethod object should have SEPA Debit last 4 too
https://docs.stripe.com/api/payment_methods/object#payment_method_object-sepa_debit
var paymentIntentOptions = new PaymentIntentCreateOptions
{
Amount = Amount* 100,
Currency = OrderCurrencyType,
Customer = Token,
PaymentMethod = PaymentMethodId,
PaymentMethodTypes = new List<string> { "sepa_debit" },
Description = "Recurring payment",
//SetupFutureUsage = "off_session",
Confirm = true,
ConfirmationMethod = "automatic",
};
var service = new PaymentIntentService();
paymentIntent = service.Create(paymentIntentOptions);
after doing recurring payment using the above code, we have to get the Last4 property, Kindly let me know how to do that
Im checking, few mins
๐
So there's last4 under payment_method_details.sepa_debit.last4
yes, you are right
just wanted to get it confirm with you about the charges object returned EVEN WHEN Im creating the PaymentIntentService, why
Im thinking of to get the PaymentIntent object as the response, but charges obect is returned.... kindly clarify on this
yeah that's fine. Charge objects are used in the background when working with PaymentIntents API
does it mean that charges object is the one which is expected to be returned for the PaymentIntentService create ?
if so, I will fetch the Last4 from charges object
Technically, the returned object is a PaymentIntent object. charges is a parameter that's added to a PaymentIntent.
but yeah, you can get last4 from the charges object
ok fine, thanks a lot
one more support required on migration from sources api data to paymentIntent
We haven't seen this view in our developer account to migrate the data from sources to PaymentIntents
have you enabled workbench?
how do we get it and also we have to share the steps to migrate with our customers
We as a SAS company, dont have the connect accounts to take care of the migration by the development team
is there ay video on the migration process, if so, kindly share the link
yes
We have a support article here: https://support.stripe.com/questions/reusable-object-migration-from-sources-to-payment-intents
If you don't see the tool, I would recommend you reach out to our support about that
https://support.stripe.com/?contact=true
They can escalate to the right team
sg_source-migration
we dont not see the migration tool in our developer console
@ruby mango if you have questions about the migration we recommend talking to our support team: https://support.stripe.com/contact
Please work with our support team for 1:1 help!