#bugkiller.
1 messages · Page 1 of 1 (latest)
so how can I change it?
stripe.Subscription.modify(
"subscription_id",
"collection_method": "send_invoice"
)
is this correct?
Yes
next invoice date is Oct 29
so if I change it today, then user will get invoice email on Oct 29?
That's correct.
let me try
stripe.Subscription.modify(
"subscription_id",
"collection_method": "send_invoice"
)
I think this is incorrect 😄
stripe.Subscription.modify(
"subscription_id",
collection_method= "send_invoice"
)
maybe this correct
What language are you using?
python
Yes, sorry. You can see an example in your preferred language here: https://stripe.com/docs/api/subscriptions/update
The second example looks good.
looks like it's working
Glad to hear.
thank you
Happy to help.
Is there any place so that I can check if invoice sent ir not
stripe dashboard, somewhere list invoice email sent
I am not sure. You can check the number, if it's generated, this means the invoice was sent: https://stripe.com/docs/api/invoices/object#invoice_object-number