#Mick-statement-descriptor
1 messages · Page 1 of 1 (latest)
@hoary yacht well there's a minimum of 5 characters for the static part of the descriptor so it can't work exactly the way you describe
in your example it would look like
calculated_statement_descriptor: "AAAAA* BAG ID1234322 B"
(you can test this in test mode by setting your descriptor on https://dashboard.stripe.com/settings/account , creating test charges with the dynamic descriptor you're looking for, and look at calculated_statement_descriptor https://stripe.com/docs/api/charges/object#charge_object-calculated_statement_descriptor )
i read somewhere that the shortened field of business/platform name is 2 characters
oh yeah, you're right
then it looks like calculated_statement_descriptor: "AA* BAG ID1234322 BLAC" (again, you can test this directly)
i must test this on production to see the result right?
no, I explained above how you can test it in test mode.
ok thanks. that's clearer now.
https://stripe.com/docs/statement-descriptors#dynamic
The suffix is concatenated with the prefix, the * symbol, and a space to form the complete statement descriptor that your customer sees.
thank you.