#coryschires - billing details
1 messages · Page 1 of 1 (latest)
Thanks! Good to know. Can you point me to a doc or pic of how it displays on the invoice?
I recommend just testing it quickly in the Dashboard, should take a few seconds!
Some background... We allow customers to add custom info to their invoices using your API (i.e. invoice_settings["custom_fields"] = ...). But, unfortunately, that feature is limited to 30 characters per field value.
But that limitation is not present in the "Billing Details" sidebar.
So I am trying to figure out how those two – pretty similar seeming features – differ.
koopajah: I will try it
yeah please don't use billing details to display information like that
Okay. So invoice_settings["custom_fields"] is for stuff like "Vendor Code: 12345". And "Billing Details" is for stuff like address?
I'm just trying to understand the intended purpose / best-practice for these two fields
Oh. So I can set that value (i.e. the "Billing Details" stuff) via the API? Looks like, "yes".
Yup, it's the first parameter listed in the section of the docs on updating the Customer object: https://stripe.com/docs/api/customers/update
Thanks for the hlep!