#ws2644

1 messages · Page 1 of 1 (latest)

sonic basaltBOT
eternal hamlet
#

hi

plucky lodge
#

Hi there! Can you share more details? This is a pretty vague question

eternal hamlet
#

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

plucky lodge
eternal hamlet
plucky lodge
#

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

eternal hamlet
#

But which webhook we could show transfer data ?

#

I did not see anything like that

#

Should we use Stripe Treasry instead ?

plucky lodge
#

What transfer data exactly?

eternal hamlet
#

like user buy product money amount. time etc

plucky lodge
#

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?

eternal hamlet
#

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.)

plucky lodge
#

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

eternal hamlet
#

how about transfer.created session.?

plucky lodge
#

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

eternal hamlet
#

Oh. that's what i need !!

#

from Stripe account to another 's data

plucky lodge
#

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

eternal hamlet
#

my funds flow is one user created a fund (like A) and other user send their money to (like A) .

plucky lodge
#

I don't understand. If you're using Connect, can you tell me if you're working with destination charges or separate charges & transfers?

eternal hamlet
#

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.

plucky lodge
#

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?

eternal hamlet
#

yes

sonic basaltBOT
plucky lodge
#

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

eternal hamlet
#

ok