#BruceWayne
1 messages · Page 1 of 1 (latest)
hello
Hi there, you can learn more about PaymentIntent from the API reference https://stripe.com/docs/api/payment_intents#payment_intents
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
When I complete a transaction, what parameters should I use to query the details of this transaction in the stripe management background?
Are you asking what property you shall check to know the status of the PaymentIntent?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
No, I want to check this transaction in the management background
What is your management background? Can you tell me more about it?
When I use the API to create a checkout session and the customer pays successfully. How should I view this transaction in the admin background, how can I find this transaction
The management background is the stripe dashboard
great
https://dashboard.stripe.com/payments you can find all payments here
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
This is the problem, there are many transactions in it, how do I find the specified one transaction
this?
Use this parameter to find a transaction?
https://stripe.com/docs/api/checkout/sessions/object#checkout_session_object-payment_intent you can get the payment_intent from the checkout session object, and that payment_intent correspond to the payments you see in Dashboard.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
OK