#persistentcoder_api
1 messages ¡ Page 1 of 1 (latest)
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.
- persistent_invoice-metadata, 1 hour ago, 16 messages
- persistentcoder_api, 5 days ago, 15 messages
đ 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/1237122737395335300
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hello, you can use a subscription schedule for this. You can tell us the prices and when to charge them https://docs.stripe.com/billing/subscriptions/subscription-schedules
Alright. How to achieve separate charges and transfers with invoicing. We don't like to transfer the rent to the connected account immediately but would like to manually transfer it later.
Invoices have PaymentIntents so SC&T works the same way. You can create a transfer on the PaymentIntent's charge after the payment has succeeded
https://docs.stripe.com/connect/separate-charges-and-transfers?platform=web&ui=stripe-hosted#create-transfer
https://docs.stripe.com/connect/separate-charges-and-transfers?platform=web&ui=stripe-hosted#transfer-availability
Thanks for the link. I will go through this. We don't like to show that it is some kind of subscription on anywhere on the stripe hosted pages. I Hope that is possible. It creates unneceesary confusion to the customer as there is no susbscription as such !
Subscription schedules do create a subscription, so the invoices would say they are a part of a subscription. If you are open to writing your own Elements page, you can confirm the payment intents via that. Otherwise you would have to do something like create separate one-off invoices and then mark the original invoice as paid once the one-off invoice is paid.
well its almost like creating one-off invoices based on my own cron scheduler. I that case i dont even need the orginal subscriptions and its invoices, no?
Yes, good point. That suggestion would basically mean using us as a scheduler. So it may be simpler to just schedule one-off invoices for yourself if you want a Stripe hosted page that doesn't say it is part of a subscription.
cool, thanks