#john_destination-metadata
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/1466502629931745523
đ 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.
- john_api, 2 days ago, 51 messages
hello! they are not, we actually address all instances where metadata is automatically copied in our docs here:
https://docs.stripe.com/metadata#copy-metadata
We kind of also cover this for description in this doc which might be helpful
john_destination-metadata
does it mean that the Payout webhook, by default, will not have the metadata that were added to the PaymentIntent?
By "Payout webhook" I assume you mean payout.created Event right or similar?
Those Events have no metadata or transactions information at all so that isn't really relevant/impactful
ok.
is it possible to get any information about the charge object or paymentIntent object from a Payout?
Yes it's possible, you can use the List BalanceTransactions API https://docs.stripe.com/api/balance_transactions/list and pass the payout: 'po_123' parameter to filter out all the transactions bundled in that Payout. You can use the Expand feature https://stripe.com/docs/expand to obtain more information
https://docs.stripe.com/expand/use-cases#charges-in-payout is a good start
Note: Since you are a Connect platform you will need to expand back up to your platform objects so it's a bit more complicated but overall the same concept
and then each Charge object in the balance transaction will have the metadata, right?
Well it depends. If you updated it like we mentioned before, yes.
If you didn't then you would have to expand back up to the Charge on your platform account that has the metadata yes
got it. thanks @fair portal