#I_Be3X_I
1 messages · Page 1 of 1 (latest)
👋 happy to help
I have a simple Python script that uses the Stripe API. I am trying to generate some synthetic data with random dates across the last two years. I am unable to find the documentation about creating data about past dates. I have tried adding the "created" field to the metadata etc... Is there any documentation about that? Is it even possible to create fake charges (for dev purposes) with past dates? Here is some sample code I am using:
charge = stripe.Charge.create(
amount=5000,
currency='usd',
source='tok_visa',
description='test',
)
Thanks!
Unfortunately, that's not possible
okay thanks
let me know if you need any more help