#Ox IronReturn-pi-response
1 messages · Page 1 of 1 (latest)
Hey, not sure I understand which API call you're making. Can you share the exact endpoint/code?
curl https://api.stripe.com/v1/payment_intents
-u sk_test_51...Ghc:
-d limit=100
-G
This request
(adapted in postman)
Ok, and what are you not receiving that you're expecting
Some Payment intent with succedeed status
You'll need to give me the ID of a specific PI that isn't returned
pi_3KeHIKAMfLPmKIhZ3FdyyWzi
seems like the return JSON is not filter like on stripe dashboard
This is likely a pagination issue
You have ~800 results, and the limit returned per request is 100
So you need to paginate your requests
yea i know but how works filter ?
Seems like its not the same on stripe dashboard and API Json
What specifically do you want to filter by?
by date
Use the created parameter when filtering: https://stripe.com/docs/api/payment_intents/list#list_payment_intents-created
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.