#theglobe
1 messages · Page 1 of 1 (latest)
Hello 👋
Are you referring to Payments tab on the dashboard?
If so, you'd want to make sure that description parameter is set on the PaymentIntent when you create it
https://stripe.com/docs/api/payment_intents/create#create_payment_intent-description
OR you can update it later on by calling the Update PaymentIntent API endpoint
https://stripe.com/docs/api/payment_intents/update
I think I will have to update it later. I am using Stripe pre made checkout page.
If you're creating Checkout Session by calling the API then you can set payment_intent_data.description parameter for one-time payments
https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-payment_intent_data-description
however, that won't work for subscriptions as the PaymentIntent for subscriptions lives on the invoice instead
I am not creating checkout sessions by calling the API. I have a checkout link from Stripe that I added to a button
Ah so you're using PaymentLinks?
yes