#jamesdahlen.nwi
1 messages · Page 1 of 1 (latest)
What you are running in to is that the payment intent itself does not have line items itself. It is attached to a Checkout Session which is what has the line items. If you set this info on the description or metadata of the payment intent when creating the Checkout Session, this info should show up in the report https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-payment_intent_data-description
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
ah ha, i was setting some metadata on the Session itself also. SO i need to use that payment_intent_data instead
ok, thanks. for the other part where I am accepting payment via verified bank account: I am simply creating a Charge and providing a Description/Metadata for the Charge. will that work as well?
Yes, the metadata for the charge should show up on reports that list out charge info
ok- thank you i will try this