#lean-dank-invoice

1 messages · Page 1 of 1 (latest)

night willow
#

hi! adding a \n newline or so on would not really work or be reliable. I don't think we really have a good solution here. Let me try something though.

#

might only be possible to do this in the dashboard though, the dashboard has the ability to use some internal billing details fields that are not in the public API

#

ok, I don't think I really have a clever solution. You could do it this way if it helps.

let customer = await stripe.customers.create({
    email: "test@example.com",
    name:"Jane Doe",
    address:{
        line1:"1 Business Avenue",
        line2:"Jane's Company - Accounts Recievable",
        city:"San Franciso",
        state:"CA",
        country:"US"
    }
});