Next.js Discord

Discord Forum

need help for next js and stripe

Unanswered
Krishna posted this in #help-forum
Open in Discord
i am wokring on stripe subscription like user can select custom day on week and create for weekly subscription but i want to handle one thing like every week of subscription i want to create their custom order on the db so how i can do this how i can call the api every week automatically user can start with any date and that run weekly

3 Replies

@Krishna i am wokring on stripe subscription like user can select custom day on week and create for weekly subscription but i want to handle one thing like every week of subscription i want to create their custom order on the db so how i can do this how i can call the api every week automatically user can start with any date and that run weekly
The start of the subscription can be done by passing the start date parameter inside the subscription object. After that, use the default mechanics to confirm the subscription. After that, you can listen to the „customer.subscription.update“ webhook from stripe. That will be called, whenever the webhook updates. Here you want to create a new purchase in your database. Like that you can create a weekly subscription with each week a new db entry
@Krishna solved?