#San_jen-subscriptions

1 messages · Page 1 of 1 (latest)

rapid parrot
#

Hi! What do you mean by dynamically? You want it to change every month?

rotund folio
#

So I have this fundraiser where use would enter the monthly price they want to pay

#

so I need to know is this possible with stripe

rotund folio
rapid parrot
#

Got it! And how are you creating the subscriptions?

rotund folio
#

At the moment I have created the subscription manually in stripe and added fixed price

#

so now I think have to create subscription from the coding itself?

#

the product *

rapid parrot
rotund folio
#

I use this to create subscription
subscriptions.create({
customer: cus,
items: plan,
proration_behavior: "none"
})

#

oh i see, ill try this

#

so here we dont need to pass the price id right?

#

we directly pass the items.price_data.unit_amount

#

no need of items.price ?

rapid parrot
#

Exactly