#Glutch
1 messages · Page 1 of 1 (latest)
Where did you set it on the checkout session?
Also what page on the dashboard is that?
Are you looking at the Payment Intent associated with the Checkout Session?
await stripe.checkout.sessions.create(payment_object)
in the payment_object
top level
That only sets it on the checkout session object. If you want it on the payment intent, you need to set it here: https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-payment_intent_data-metadata
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
@heady sentinel worked, thank you