#anthonyl5602
1 messages ยท Page 1 of 1 (latest)
Hi there!
Yes, when listing Charges you can use the created parameter to limit the creation date: https://stripe.com/docs/api/charges/list?lang=node#list_charges-created
ok thanks, the API call would look like this? https://api.stripe.com/v1/charges?limit=100&created.gte=2023-10-01
You are not using our Stripe SDK to make the API calls?
Got it. But not that's not how it works. The created.gte is not part of the URL, but part of the form-urlencoded body of the request
You could use our Postman library if needed: https://github.com/stripe/stripe-postman
So it worked?