#Nadiya - payment description
1 messages ยท Page 1 of 1 (latest)
Hello, which description are you looking to customize here?
Like the one that shows up on a certain API object or on bank statements to something?
this one ๐
its not possible for the connected account holders to know what are these payments for.
so i would like to add some informative data as the name.. like.. which product they get paid for
Ah, I think that that would be the description field on the related payment_intent https://stripe.com/docs/api/payment_intents/object#payment_intent_object-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.
If you set that there, I believe it should change what shows up on the Dashboard
sorry, i'm using separate charges and transfer.
so should i add description in transfer api?
Yes, I think so
If that does not set it, then I think you will need to set the description on the charge that the transfer creates on the connected account https://stripe.com/docs/api/transfers/object#transfer_object-destination_payment
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
well.. this doesn't work. let me try the second one
sorry, how do i set the description for expandable object?
You would just make a separate API call to update that object directly. So in this case, that destination_payment field contains the ID of a charge object that is located on the connected account
So you can update it using the charges update call https://stripe.com/docs/api/charges/update#update_charge-description
And keep in mind that the Charge lives on the connected account so you would need to pass in their ID to make the call as them https://stripe.com/docs/api/connected_accounts
ok, where can i get the charge id from transfer object?
The destination_payment property on the Transfer is the charge ID that you need to update
"destination_payment": "py_1Kz4VZQT8FUuJFHIQkbNC4SD",
this is my destination_payment id.
Doesn't charge id starts with ch_xxxx?
Actually both py_ and ch_ IDs in the API both represent Charges.
There some fun historical reasons behind the terminology and prefixes here, but you can update py_1Kz4VZQT8FUuJFHIQkbNC4SD with the charge update call
updated the charge description, but on express account it still showing that default mesage
Gotcha. Sorry about that, I don't know where this description is coming from then. I will reach out to my colleagues to help look deeper in to this.
sure, thank you!
Interesting, our docs say to do exactly what you just did https://stripe.com/docs/connect/customize-express-dashboard#separate-charges-and-transfers
Is py_1Kz4VZQT8FUuJFHIQkbNC4SD specifically the payment that you just updated?
tr_1Kz4szKWW6Esfew4MHRlHmCR
this one updated description field of charge object
oh sorry! py_1Kz4szQT8FUuJFHIGtiWwAGb
this one
Thank you. I will be able to check in to it in a minute.
Is that the payment from the very top of the dashboard that you sent a screenshot of or something?
yes
Apologies from dropping off this thread for a bit. I am looking in to that payment now
Ah I see, you will also need to reach out to our support to be enabled for these custom descriptions
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.