#typeshit_checkout-customization
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/1270450038132310087
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
We (Stripe) control what to show on that button, you can't control/change what we show
Okk no problem thanks, i have another question should i open another ticket?
question: I have a column in my database containing dates. Is it possible to trigger an update to the row when the date is reached??
@steady wing please don't jump into random threads.. See #help for instructions
question: I have a column in my database containing dates. Is it possible to trigger an update to the row when the date is reached??
Hi there
Is this related to any Stripe events? i.e. are you trying to update your DB based on something changing on Stripe?
There's any way i can do a subscription manually?
Sorry I don't really follow what you mean by that..
Are you asking if you can build your own subscription engine?
Sorry for the confusion. I want to build a verified accounts system, but I don't want it to be a traditional subscription with auto-pay and the need for users to cancel. Instead, I want users to get a verified account for one year, after which they need to pay again to renew it.
You can create a yearly subscription where the collection method is set to sending an invoice rather than saving the payment method and charging it automatically
how can i do that?
If you use the subscriptions API then you can set collection_method: send_invoice when you create the subscription
https://docs.stripe.com/api/subscriptions/create
https://docs.stripe.com/api/subscriptions/create#create_subscription-collection_method
and thats is going to make the subscription "manually"?
There's no "manually" subscription. Like I mentioned above, it will send the invoice instead of charging customer's payment method automatically.
What you're describing doesn't really make sense as a subscription right now..
I don't want it to be a traditional subscription with auto-pay and the need for users to cancel. Instead, I want users to get a verified account for one year, after which they need to pay again to renew it.
In this case, you can just accept a one-time payment and grant verification for a year. After a year, you'd ask customer to pay again (this is something you'd need to handle in your application, not something Stripe can help with)