#jen_stilletoz-invoice-message
1 messages · Page 1 of 1 (latest)
I want to let the user know that the coupon they added during checkout will be added to their next invoice on subscription
Hello! what kind of note are you looking to add? There is a memo field you can include a message in:
https://stripe.com/docs/invoicing/customize#memo-field
Ah, ok, yea the memo sounds like a good fit for that kind of note then
can i send the text dynamically?
through coding
instead of a static message adding from stripe
Yea, as the docs note you can set that using the description parameter on the invoice:
https://stripe.com/docs/api/invoices/update#update_invoice-description
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
For a subscription, you'll want to update the invoice while its a draft after creation but before it is finalized
ok let me check this