#zorid - checkout
1 messages · Page 1 of 1 (latest)
Can you explain what you want to change exactly? Or provide an example of the result you want to achieve?
When a payment comes in from Stripe Checkout of $25 it has a description like "pi_3KRNk6HXVoHtRnTh1iTWmLBl" I would like this to say like Registration Fee so those on our back end know what this payment is for
I use to have payments come in from a built in system through our Forms Company but they wouldn't accept PAD's so I had to build my own but theres would come through with a nice description
Gotcha, in that case you can set the description (or some metadata) for the Payment Intent using the payment_intent_data parameter when you create the session: 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.
I think you'd need to do 'payment_intent_data' => ['description' => 'Registration Fee'] in PHP, but generally yes
Awesome Thank you for the help!