#keithlard

1 messages · Page 1 of 1 (latest)

patent prawnBOT
raven stratus
#

Yes, but it gets complicated for Subscriptions, I'll need to double check where those pull their descriptor values from.

teal sandal
#

thank you, I can see the account wide setting but I was wondering if it applies to subscriptions and I can't change it

raven stratus
#

The best place to control that for Subscriptions, is on the statement_descriptor field on the associated Invoice objects:
https://stripe.com/docs/api/invoices/object#invoice_object-statement_descriptor

Since you're working with Subscriptions, the Invoices will be automaticlly generated and you would need to update them before they are finalized in order to leverage this approach. That may prevent you from adjusting the statement descriptor on the first Invoice for a Subscription as those Invoices are typically immediately finalized.

Another option, is to control it at the Product level:
https://stripe.com/docs/api/products/object#product_object-statement_descriptor
If the Invoice does not have a statement_descriptor defined then we will pull from the first Product on the Subscription.

patent prawnBOT