#BinaryWritter-subs-test
1 messages · Page 1 of 1 (latest)
Hi there! I'm assuming you are talking about wanting to delete Products?
Once a Product has been used it can't be deleted, only archived.
Yes delete products that i use as subscriptions, i have archived them but they display again when i fetch the data from Stripe dashboard to my web page
How are you fetching the data?
I have made a api with Next.js, i circle through all products in Dashboard and display them, then i call checkout and transaction is completed, but i made 2 tests in test mode and now i cannot errarse old products from dashboard when i do the fetch, i have archived them but they still display when i get the data from dashboard
Hope im making myself clear, my main language is Spanish
Gotcha. So when you list your products you want to check for the active boolean: https://stripe.com/docs/api/products/object#product_object-active
If active: false then you should not display the product as that indicates it is archived
Oh and thats all? Nice, another thing please one of my NEW products has a incremental rate, but it only displays the first moth free i have added also, its that correctly created by my part?
I want a free month first but i want at 2 months to charge a different price on 4 months another price and on 6 months another price
You would want to use the Subscription Schedules API for this with a different Price or different Quantity in each Phase.
Are you familiar with the Subs Schedule API?
No the quantity will be the same the price would be the only thing incrementing every 2 months but it displays only 0 USD, not the complete prices
Oh yes i didnt understood you at first yes i want prices to increment every 2 months
No i think i dont know that api all my dashboard is in spanish thought maybe i do
Ah are you only using the Dashboard to create Subscriptions?
Yes
Okay then this is not possible via the Dashboard. You would need to create these Subscriptions via the API as discussed here: https://stripe.com/docs/billing/subscriptions/subscription-schedules
I want to avoid api right now, i need to deploy to web site tomorrow, no time for more coding, in this picture its shown what i mean with the Dashboard
Okay well in that case you would need to go into the Dashboard and manually update the Subscription when you are ready to update it.
As shown in the picture i guess, sorry its in Spanish
Oh this i mean with the new ones i created, no need to modify them
But do you think it will work?
Sorry i need to be shure, because i want this live tomorrow
I'm sorry, I don't fully understand what you are trying to accomplish when you show the above. That is a metered Price where you charge different amounts based on different quantities.
It sounds like you just want to increment the amount of the Subscription over time. That would just be normal licensed Prices that are of differing amounts. Then you would upgrade the Subscription to the different Prices over time if you aren't going to use Subscription Schedules to automate this.
Oh so its not what i need youre right, so i need to modify that with API as you say or do what you say in your last message
Yes if I am understanding you correctly then yes. I'd recommend testing this out end to end before going live.
But im not clear on how to do that with dashboard, can you give me another clue? Damn language barrier
how do i do this you say ? It sounds like you just want to increment the amount of the Subscription over time. That would just be normal licensed Prices that are of differing amounts. Then you would upgrade the Subscription to the different Prices over time if you aren't going to use Subscription Schedules to automate this
Step 1: create the Subscription
Step 2: view Subscription in Dashboard and click "update Subscription"
Step 3: add new Price you want to update to and click "Schedule update" in top right
Step 4: Select date you want to set for the update
Step 5: After that date passes and the Subscription upgrades, repeat steps 2-4 to schedule another update for the next desired period.