#kc_dh_ff
1 messages · Page 1 of 1 (latest)
Hey there
What charge flow are you using?
And have you taken a look at https://stripe.com/docs/connect/statement-descriptors ?
@plush widgetsmark what do you mean by "charge flow"
See: https://stripe.com/docs/connect/charges -- there are three different flows. So it will depend on which one you use for how you would set the Statement Descriptor here.
If you have an example PaymentIntent that I can look at that would work too
Ok let me look into that
I believe we are using Direct charges
We set the statement descriptor when the connected account is created, but would like to change it for individual charges
Ah okay then yeah you can set a dynamic Statement Descriptor by the statement_descriptor parameter: https://stripe.com/docs/api/payment_intents/create#create_payment_intent-statement_descriptor
Ok we use "PaymentIntentCreateOptions" for bank accounts and I see those 2 properties there - so you are saying if I set that it will change the statement descriptor and the suffix?
Same properties seem to exist for ChargeCreateOptions
Yep, the suffix parameter is specifically for Cards so you should use the statement_descriptor instead. And yes, if you set this on the PaymentIntent it applies to the Charge -- you can set it on the Charge as that was the legacy API before PaymentIntents and now PaymentIntents wrap Charges
thank you!