#stephy
1 messages · Page 1 of 1 (latest)
Hi
Could you please share more details ?
i have site where i integrate the stripe for payment transactions. in my site two kinds of people one is vendors and other one is members.. our vendors do the works for members and they pay via ach..to do that now i use chekout section for ach in my website..when members pay , all amount collected to a single account and after we transfer the amount to vendors bank account..to pay vendors i just use connected account and pay using transfer api
You mean you need to way to be notifed when the ACH payment completed ?
Are you listening to checkout.session.async_payment_succeeded event ?
also when transfer the amount to connected accounts then also i want to konow
actually am using stripe provided checkout
You need to configure connect webhook and listen for payout.paid event:
https://stripe.com/docs/api/events/types#event_types-payout.paid
so you mean i have to configure the webhooks to manage this?
how we configure this in my projects.. when i saw ,is it only goes to stripe account and add endpoint and where mention the path only? or can i set up and track in website? how it works ?
Hi! I'm taking over this thread.
If you are not familiar with webhooks I recommend reading this: https://stripe.com/docs/webhooks
ok the thing i understand after looking this
if i have to add webhooks ,i need to go my stripe account and click webhook and add endpoint there and mention where we need to listen right?
can we add and manage webhooks only in stripe account?
if i have to add webhooks ,i need to go my stripe account and click webhook and add endpoint there and mention where we need to listen right?
Pretty much yes. And then write some code on your backend to handle these events.
can we add and manage webhooks only in stripe account?
What do you mean by this? You can create the endpoint in the Stripe dashboard or with the API.
yep...this actullay i want to know.. how can i manage events in backend??