#SagSaw-payments
1 messages · Page 1 of 1 (latest)
hi! It really really depends how exactly you do the payment and how you integrate with Stripe precisely.
The generic answer is that the details would be in https://stripe.com/docs/api/payment_methods/object?lang=curl#payment_method_object-billing_details for the PaymentMethod object associated with the payment.
We have a checkout redirection payment. Once the payment is successful at stripe end and it redirect back to our success page. BUT we didn't received the payment reference number and client reference number
We using ASP.NET
have you seen https://stripe.com/docs/payments/checkout/fulfill-orders ?
I'm afraid I don't really follow what that means. Can you share your account ID? acct_xxx, it's on https://dashboard.stripe.com/settings/account .
acct_1LSj9nSGSIpVBN8T
ok, you are using Checkout.
so what I said above does apply, the first step to getting details about successful payments is to read https://stripe.com/docs/payments/checkout/fulfill-orders so you can receive and process webhook notifications about the payments on your server.
we want the data present in this link
https://dashboard.stripe.com/test/events/evt_1LVxLOSGSIpVBN8Th4OOQksz
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Hi 👋 jumping in so my teammate can take a break. The guide that my teammate linked to explains how to use our webhook events, and if you do that then we will push event objects (like the one you linked to) to your servers for processing.