#Wagyuking-payment
1 messages · Page 1 of 1 (latest)
Could you please send the request id req_xxx?
The dashboard has been displayed, but it is not queried through the interface https://api.stripe.com/v1/invoices
sk_test_51Kir3kJkTsrU4Xpch5bwGLr19roK8T3TUHESlR1Ou6wr5DKV26r8L7SJtXsZJ42CCrtt3uDEtCzovy2t8GCKnTuM00xYQ2yXwp
This 20 yuan transaction was not found, but other subscription payments can be found
Just to make one thing clear, purchasing a one-time product doesn't create an invoice
This is a 10 yuan subscription, you can check https://api.stripe.com/v1/invoices?customer=cus_LPkwlclkPF2GKz&limit=100
Invoices in Stripe are used for subscriptions
So how do I check this one-time transaction of 20 yuan?
You could get both recurring and one-time payments by using this API https://stripe.com/docs/api/payment_intents/list#list_payment_intents-customer
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
and passing your customerId to the customer field
If the invoice field is not on a PaymentIntent this indicates that it's related to a subscription and you can then use the invoice Id to get more info about that subscription
ok thanks a lot for your help
let me know if you need any more help