#deondk-description
1 messages · Page 1 of 1 (latest)
i think this is what you're looking for? https://stripe.com/docs/connect/customize-express-dashboard#destination-charges
So Im making destination charges. But the problem is the express account payment details for payment isnt updating
you need to reach out to Stripe Support to enable this feature first. It's not as clearly stated as what it should be, but towards the end of that section, it says This description becomes visible on the Activity feed after Stripe enables custom descriptions for your platform.
but do I still need to physically update the payment description for connected account after payment is made?
or will it be done automatically?
you can set the description during payment creation. If that feature is enabled, you don't need to re-update the description again
var options = new PaymentIntentCreateOptions
{
Amount = longAmount,
Currency = currency.CurrencyCode,
Description = payment.Description,
PaymentMethodId = payment.StripeCardId,
CustomerId = payment.StripeCustomerId,
ApplicationFeeAmount = (long)totalApplicationFee,
TransferData = new PaymentIntentTransferDataOptions
{
Destination = subvendorMerchantId,
},
Confirm = true,
ReturnUrl = "https://www.lastmanstands.com/auth-load"
};
so this is good enough once the feature is enabled to auto set the description on express account payment details?
sorry just want to be 100% sure
yes it should be. If you're seeing a different behaviour after getting that feature enabled, feel free to reach out again
ok thanks
and do I as platform account ask stripe support to enable the feature?
or does it have to come from the individual express accounts?
yes, you need to reach out from your platform account
can I reach support from my dashboard?
if you're already signed in, you can contact Stripe Support : https://support.stripe.com/contact/
point them to this doc : https://stripe.com/docs/connect/customize-express-dashboard#set-custom-descriptions, and tell them that it says to write in to Stripe Support to enable this feature for custom descriptions. Maybe that would help.