#Swampi995
1 messages ยท Page 1 of 1 (latest)
"pi_3NG03HBXaJQ2WEks0jutYsgF"
And where exqctly do you see the "created at"?
all my payments actually ๐
on webhooks, also when i try to list the paymentIntents
But where exactly? In the dashboard (which page), in the API (which field), something else?
for example, when in the API, when try to get all payments intents after a specific date using created.gte, it's not working
because all the created times are 1686052748
like in this doc https://stripe.com/docs/api/payment_intents/list
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
also, for this payment intent for example pi_3NFzSeBXaJQ2WEks12zxHvMW , check "created" field, you'll see that it has 1686052748
So you mean this created parameter of all your PaymentIntent is set to 686052748 ? https://stripe.com/docs/api/payment_intents/object#payment_intent_object-created
yes
I mean, they are not all 686052748, but they are way off, they are from 1970
new Date(1686052748)
Tue Jan 20 1970 14:20:52 GMT+0200
No, 686052748 is from 2023: https://www.epochconverter.com/
I think you have an issue in how you convert the Unix epoch into a date.
shoot, it's a unix date, my bad, thanks!