Details
Description
Invoice numbers are not passed to Stripe, as they are with some other gateways. Stripe provides a "description" field that can and should be used for this purpose. Pass any invoice numbers being paid as part of this description field.
See https://stripe.com/docs/api?lang=php#metadata
For example:
Stripe\Charge JSON:
{ ... "description": "Charge for test@example.com", ... }In Stripe's example, they use the text "Charge for test@examples.com" as an example for the description field. Instead, include the invoice numbers being paid here.
This was originally requested at http://www.blesta.com/forums/index.php?/topic/6089-stripe-invoice-number-in-description/
I think this is for invoice id CODE (Invoice #) not the internal id, so we'll need to see if that's available.