#Fick si Morty
1 messages ยท Page 1 of 1 (latest)
Hello ๐
Checking
โค๏ธ thank you
Quick question, Can you share the ID of the payout that's in the screenshot?
Wondering if this was created by calling the API vs if this was an automatic payout
It was created by automatic payout.
Stripe payout ID
po_1Lu4W7CXb9KXMZUQxG5czZ8i
My guess is that every transaction in the transaction list is, ofc, an object created b4 the payout that I should somehow edit, either when creating the checkoutsession or when receiving the paid webhook
huh interesting, that payment is this payment intent
https://dashboard.stripe.com/payments/pi_3Lrzp3CXb9KXMZUQ06N2oKa0
But I don't see a description that matches what you're seeing in the list there
Well, it is a default description, probably. You can add a description to the payment from the dashboard, I want to do it through the API, i guess i can, right?
"Created from Django" wouldn't be the default here. Not sure where that might be set. Can you send me a link to the page in your dashboard where you see that description?
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Interesting, I am still not seeing where that value is coming from in our system. It isn't a default from what I can tell
Still looking in to this and will get back to you on how to set it
Hi there ๐ I'm jumping in here to take a closer look, please bear with me a moment while I catch up on the context here.
I think that value is being pulled from the related Customer object, which was created with "Created from Django" as its description:
https://dashboard.stripe.com/logs/req_zjqN22WoART5Y2
We aren't the most familiar with the dashboard (we tend to focus on the API-side of integrations) so I'm not certain what field the dashboard will check for a description, or in what order those are checked.
I would suggest trying to set the description parameter (within the payment_intent_data hash) which the Checkout Session will use when creating the underlying Payment Intent, and see if that description is pulled into the dashboard page that you're expecting:
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.