#johana_webhooks
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/1355203948423942308
📝 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.
- johana_docs, 18 hours ago, 38 messages
Hi, what do you mean by 'automate these creation'? Are you able to provide more context here?
I have a website where private individuals sell services to other individuals. And I'd like to set up a payment solution where buyers make the payment and the payment is blocked until the service is confirmed. Once confirmed, the payment is transferred to the seller after deduction of a commission.
And I'd like to automate the user connected acount creation
Hi hi! I’m going to be taking over for my colleague here.
What do you mean when you say 'automate the user connected account creation'?
What kind of Connected Accounts are you using?
Express connected acount
Great. And what exactly is the issue you're having?
When a user starts creating an account on stripe, with this :
const accountLink = await stripe.accountLinks.create({
account: stripeID,
refresh_url: ${process.env.WEB_ADDRESS}/profil,
return_url: ${process.env.WEB_ADDRESS}/profil,
type: 'account_onboarding',
});
return res.status(200).json({accountLink: accountLink.url});
It's possible that the user doesn't finish the creation, so I'd like to use webhooks to know if the creation is complete.