#jurica_20131
1 messages · Page 1 of 1 (latest)
hi there!
hi!
you could add some additional information in the Invoice footer (https://stripe.com/docs/api/invoices/object#invoice_object-footer) or the invoice custom fields (https://stripe.com/docs/api/invoices/object#invoice_object-custom_fields). but there will also be some limits in terms of characters.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Programming language I am using is go - and I am checking docs in go sdk
there are max 4 custom fields ?
there are max 4 custom fields ?
correct
so 4 rows ? 4 pars of name and value , right ?
yes
my customers can potentially have thousands of "sub customers" . is there any way to do this that is not limited in terms of number of characters ?
no sorry. if you need more customization, then maybe you should generate your own Invoice
Ok, thank you. Can you plz point me to the docs on how to generate my own invoice ?
there aren't really Stripe docs, it's more like you would write your own application logic to generate PDFs with all the information you need, and can read fields from the existing Stripe Invoice API object to populate part of it.
How does that integrate with Stripe ? Would I need to upload that invoice to Stripe then, or in that case we are completely bypassing Stripe ?