#m.x.m_
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. 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.
- m.x.m_, 12 hours ago, 16 messages
- maxim-paymentintent-customer, 12 hours ago, 40 messages
- maxim-appearance-react, 14 hours ago, 6 messages
what's the payment intent ID?
No I know I think
I create a intent everytime the customer goes to the specific page but There only can e a list of 10 I think in stripe so I now only create a new paymentintent to the customer when he doesnt already have 1 that is not succeeded
But how can I display more than 10 payment intents
You can see up to 20 payments in the Dashboard payment page, if you want to view more, click the "Next" button
No when I request It through the API
the paymentIntents linked to a customer id
I can see only 10
What APi?
Hi! Can you share the request ID (req_xxx)? Here's how you can find it: https://support.stripe.com/questions/finding-the-id-for-an-api-request
Find help and support for Stripe. Our support site provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
res = (await stripe.paymentIntents.list({
customer: user.customer
})).data
This is the way I request the paymentIntents linked to a customerId
Only the last 10 will be displayed
It will only display the last payment intent because the other does not include by the last 10
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
this explains why it returns 10 items only
https://stripe.com/docs/api/pagination?lang=node#pagination you might want to use pagination
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.