#hiru-Payment
1 messages · Page 1 of 1 (latest)
Hi! Can you share the request ID (req_xxx)? Here's how you can find it: https://support.stripe.com/questions/finding-the-id-for-an-api-request
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
req_36aqhyZ09mmFWI
Thanks. This PaymentIntent is not generated in your account, and that's why the error.
You can only access the resources generated in your account.
i creating payment intent like this so how can it not generated in my account
Did you pass the same stripeAccount when you call stripe.paymentIntents.retrieve ?
no
You need to pass the same stripeAccount in the request when retrieving the PaymentIntent
okay , but why my payment is not shown here in all payments
You are making a direct charge, the PaymentIntent will be created in the connected account, not your account.
so i will see this payment in stripe connect account only?
so i make direct charge so is this safe to use (direct payment intent in connect) ? ya charges and transfer is better for connect payment?
@gusty musk
It really depends on your business. I'd suggest you to read through https://stripe.com/docs/connect/charges#types and understand the various charge types
Sure, what's your question?
here i am creating card token but when i entered wrong card number in this token so i didn't receive any response or error so how can i validate is cardtoken created or not can you solve this? exp_month: cardData.cardExpMonth,
please ignore exp_month: cardData.cardExpMonth,
Card validation is not performed during tokenization.
Are you using Tokens API to collect payment method from your customers?
see first i am creating cardtoken and after i create resource with customer id and after i get card id and after successfully card i used card id to create payment method and use this payment method id for payment intent .
is this is perfect process ?
This is the old flow. I'd highly recommend you to migrate to the PaymentIntent API https://stripe.com/docs/payments/payment-intents/migration
but i need all cards to my application like this thats why i saved all card details
OK, so you need to save the cards, use SetupIntent API then. https://stripe.com/docs/payments/save-and-reuse
is this process is good or not . in this process any problem is avail or not. it's working ?
The old APIs are not SCA-ready, so that you can't perform 3DS authentication flow. See https://stripe.com/docs/strong-customer-authentication for more details
but in above process i already create payment method and payment intent for transfer payment in connect account so is this method is pefect i think?
*perefect
I'd suggest you to go through the doc that I sent earlier to understand the impact of SCA requirement to your business. My advise is to upgrade to the new PaymentIntent/SetupIntent API so that your integration is future proof.
okay sure