#iron_subscription-customer
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
๐ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1471942579229687838
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- ironbeard_api, 41 minutes ago, 18 messages
- ironbeard_bug-report-followup, 1 day ago, 12 messages
- ironbeard_api, 1 day ago, 38 messages
yeah that is an hallucination
iron_subscription-customer
you have to create the Customer separately first, no alternative
thanks ๐ Have a good one!
you too!
Oh, actually I had one more question:
Is there any way to create a subscription that will be paid by bank transfer (so, collection_method=send_invoice) that will actually start with subscription.status = 'unpaid' instead of active?
No. unpaid explicitly means the previous Invoice was never paid and at the end of all retries we moved to that status because you picked that option in your account settings. It's also something I just discourage.
But you might have meant something else than unpaid?
Oh, gotcha
sure. Right now I can't really use subscription.status == 'active' to prevent access to my SaaS, I'm having to do invoice.status != 'open'
yeah so it's not unpaid that you want. But correct that's not possible, those are paid async and can take days so usually the way you design your SaaS is to give access before they pay if you use those payment methods
otherwise someone pays for a month at $100 but can only use say 25 days because for 5 days their bank transfer was "pending" and you didn't give them access
oh, yeah sure. Unfortunately our SaaS is really data access, so if they don't pay up front they could download the data and never pay
yeah but that means you either should take the payment before starting the period or not accept async payment methods.
hmm, well we have a few clients that require bank transfer payment methods. But I need to provide an invoice to them for them to pay. Is there a way to create an Invoice/Subsription without starting the period?
nope
Basically what you want isn't really a thing today. You want to separate the "period rendering the service" from the date at which to take the payment and we don't really support this unfortunately.
No worries ๐ Thanks for clarifiying that for me!
sure thing!