#ws2644
1 messages · Page 1 of 1 (latest)
hi
Hi there! Can you share more details? This is a pretty vague question
Yes. Sorry
our platform is bubble.io and I want to pull user transcation data to our platform
I am currently looking for those APIs
Got it. In that case, I recommend working with bubble.io directly. We're not familiar with how they've built their Stripe plugin or what the capabilities are
But which webhook we could show transfer data ?
I did not see anything like that
Should we use Stripe Treasry instead ?
What transfer data exactly?
like user buy product money amount. time etc
That's not very detailed. If you're looking for pointers on which events to listen for, it really depends on how you integrate with Stripe. Do you currently use Checkout or can you share more details on how you're integrating with Stripe?
Yes, I am currently using Stripe checkout
Like we created products by using stripe and user will but them. I want to get those data (like how much they pay everytime, when they pay etc.)
You can listen for checkout.session.completed events but that won't include everything you need. Receiving this event essentially means the customer in the event completed a payment but it won't include the line items from that Checkout Session. When you receive this event, your code should parse the event details and make at least one more request to Stripe to retrieve the Checkout Session and expand its line items
how about transfer.created session.?
I don't follow. transfer.created events are only sent in the context of Stripe Connect. Transfers are created when funds are moved from one Stripe account to another
Can you describe your funds flow? It's hard to follow these one-off messages and get a clear picture of how you're integrating with Stripe and what events you need to listen for
my funds flow is one user created a fund (like A) and other user send their money to (like A) .
I don't understand. If you're using Connect, can you tell me if you're working with destination charges or separate charges & transfers?
Bascially, if a user created a fund (it called product in Stripe), other user could go transfer money to the fund (buy the Product) etc.
And by "transfer money to the fund", you mean your integration is creating a Checkout Session so that other user can pay for the product?
yes
Okay. The transfer.created event type won't apply here, as you're not using Stripe Connect. checkout.session.completed should be the right event in this case but I still recommend working with bubble.io on this
ok