#oftysterista_best-practices
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/1331163732205899788
đ 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.
- oftysterista_api, 1 hour ago, 15 messages
Hi! Can you provide more details on how these work:
- my website allows users to post their services
- 1 service post made he must subscribe to our website for 30 dollars per year
so users can post the services they offer to my platform. but to do 1 post he has to subscribe 30 dollars per year.
if he wants to do a second post he has to subscribe another 30 dollars per year for the second post.
Each post is a new subscription of $30/year?
yess correct
every time he wants to create a post in my platform, he has to subscribe $30/year to my platform for every single post
I would suggest starting off by looking at this doc: https://docs.stripe.com/billing/subscriptions/build-subscriptions
You can consider using Checkout Session.
we need to create a product catalog first right?
is that a best practice if i create multiple subscription to a product for 1 customer?
let say he want to create 10 post in my platform. so he will subscribe to my product called "SERVICES_POST" in stripe 10 times?
Yes you need to create a catalog first.
Each time the user posts, there will be a subscription with a new start and end date correct?
yess true
only 1 catalog needed right?
In that case, since you need to track the start and end dates and they are all different, you will need to create a new subscription each time.
only 1 catalog needed right?
If it's the same product and price then just 1 product and price are needed.
Yes