What I’m trying to do:
Find out where the “description” field is in the Stripe dashboard for test payments
What I’ve tried and what’s not working:
Calling the stripe checkout function setting the description parameter
Code Sample:
item_type = 'test'
c = stripe.checkout.charge(currency="USD", amount=amount value, description= item_type)
When I go to the stripe Dashboard, the description is always blank for the transactions, even though the price information is correct… Is there something I’m missing here?