#rvk
1 messages · Page 1 of 1 (latest)
Is that an automatic Payout? You can check what is included in Dashboard
It is an automatic payout. I checked the event (since I want to read these events programmatically using api), but the event doesn't contain any info about the payment link tied to it
It should contains the PaymentIntent, doesn't it
What if you see on your Dashboard?
when you say the dashboard, can you let me know what you mean?
Stripe Dashboard https://dashboard.stripe.com
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
I am on the stripe UI account, checked the event for this particular event and the event json data is what I am seeing
If you paste the Payout Id po_xxx into the search bar, does it show you including payment intents?
when I search for it, I see a payout page for the transaction I am looking and when I click on it, it takes me to a page containing payout details
I dont see any payment intent id or payment link on that page
Okie can you provide the Payout Id here? po_xxx
po_1N4y2nBXQ3LGesMBU1lnxq7g
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
scroll down to "Transactions"
You will see a refund and a charge of $17.33
And here is how you can receive programmatically https://stripe.com/docs/expand/use-cases#charges-in-payout
Got it, thank you
so when I read the charges for a payout transaction, how can I find the payment link associated with that charge?
I would say you need to mark your PaymentLink's metadata https://stripe.com/docs/api/payment_links/payment_links/create#create_payment_link-metadata, and then when you receive the checkout.session.completed webhook, copy over that metadata to your PaymentIntent's metadata
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.