#mrdatabase_connect-subs
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/1224747054652199073
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hello! Are you trying to have your connected account pay you a recurring amount? Or are you just trying to create a Subscription on the connected account for a customer to pay?
The first one, trying to setup a recurring payment to my connect acount
Gotcha - so there's two ways to do this:
- Create a regular Customer on your account and create a Subscription for them. You'd have to store the relationship between each Customer object and connected account on your end
- Add logic on your end to create an account debit on the connected account at regular intervals (https://docs.stripe.com/connect/account-debits). Your code would be responsible for creating the account debit at the right times (there's no way to schedule these/set them up as a subscription).
๐