#StasBozhko
1 messages · Page 1 of 1 (latest)
- You can follow this guide in order to create SetupIntent for future usage:
https://stripe.com/docs/payments/save-and-reuse?platform=web#web-create-intent
https://stripe.com/docs/payments/save-and-reuse?platform=web
The connected account became "Restricted"
Could you please share the accountId ?
- Yes, I've used it before. And before October 14th it worked well. Now I started to receive a lot off such setupIntent while no changes were made in the integration with Stripe.
- It is safe to share here?
- Could you please share an example of a setup_intent Id ? Between in the guide I shared, you don't need to set r "usage" to "off_session"
- yes it's safe just share the AccountId
- acct_1LXnJjQcVsANB4da
- My apologies, I was wrong in my explanation: setupIntent become succeded, but the paymentIntent created based on this setupIntent requires 3DS. PaymentIntent example pi_3LuYjsHrxLAaYjng0bNTrYSJ
Is there any way to trigger creating failed paymentIntents again via Stripe UI or maybe there is some API endpoint that can start processing such paymentIntents?
Using that connected Account no, because it's restricted
You are creating the PaymentIntent with wrong attribut, you are passing setup_future_usage: "off_session" which is not the case here, you need to pass instead off_session: true,
Make sure to exactly follow this step in this guide:
https://stripe.com/docs/payments/save-and-reuse?platform=web#charge-saved-payment-method
Using that connected Account no, because it's restricted
and after we will fix the problem with Connected Account?
- Thanks. Will try and come back in case if it will be needed. THanks a lot. here
Yes you can accept Payment again after the account is fixed
- Is there a way to retrieve all failed or request Stripe for bulk payment intent creation for failed previously?
In the dashboard of the connected Account, you can filter on the request logs page, something like this:
https://dashboard.stripe.com/test/logs?success=false&method[]=post&method[]=delete&direction[]=self&direction[]=connect_in&showIP=false
thank you!