#frankcastle_docs
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/1346604533555396658
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi! That should indicate that it has been paid out, yes.
Can you tell me more about the feature you're building and how this particular bit is useful for that use case?
I think the recieving bank is probably the source of truth for when the funds actually post, but I don't think we can get that data, so I think this will be the next best thing.
does that sound reasonable to you?
Correct.
That said:
You may want to just listen to https://docs.stripe.com/api/events/types#event_types-payout.paid (and associated) and make use of that, since it's explicitly Stripe telling you that the payout has a new status (paid in that specific case).
That makes sense. I guess my next question is what is the difference betwen the "paid" status and the reconciliation_status "completed" value? Are they the same thing or is there a subtle distinction?
Great question.
Let's take a step back. Tell me more about what you're trying to build here?
A platform for a marketplace that will allow buyers to pay sellers. The funds will move into the seller Connect account balance. Then the seller will be able to create a Payout to move the funds from their Stripe Connect account balance to their external account which will be a us bank account.
Ok cool, so manual payouts instead of automatic, so the Reconciliation stuff is useful since there's no direct correlation between a manual payout and what it's paying out.
So what part of that process will involve this particular question?
(reconciliation_status only indicates if you can list it via the Balance Transactions API https://docs.stripe.com/api/payouts/object#payout_object-reconciliation_status)
Our UI will show a list of transactions in their account. We will show the seller for example when they paid out, how much it was and whether it is posted or pending.
You've seen these, right? https://docs.stripe.com/connect/get-started-connect-embedded-components
yes, our team has indicated they want a custom dashboard.
Ahh ok. You should get all that info from the payout object - status is the value you want to look at for ... the status. ๐ https://docs.stripe.com/api/payouts/object#payout_object-status
ok. Thank you ๐