#Vinny GG

1 messages · Page 1 of 1 (latest)

sudden jewelBOT
solar ember
#

Hello, how can I help?

cosmic ember
#

https://stripe.com/docs/api/subscriptions/create

here in the documentation we can add the items in the signature right?

https://stripe.com/docs/api/subscription_items/create

When creating a subscription item will it add one more item to that subscription? Or do you have to register all the items in the subscription creation api at once?

solar ember
#

You can add items after the subscription has been created

#

Do you have questions about adding items to existing subscriptions? Or were you just double-checking whether that is possible at all?

cosmic ember
#

then i can create a subscription without items and i can add later ?

solar ember
#

You have to create subscriptions with at least one item. You can create a subscription with just a $0 item though. So you can create a subscription to a $0 price, and then delete that item and add other prices later

#

Or you can just collect the customer's payment info and wait until you know what you want to charge them to create the subscription. If you want, you can backdate the subscription's start date in that scenario https://stripe.com/docs/api/subscriptions/create#create_subscription-backdate_start_date

cosmic ember
#

Thank you very much I will look at this documentation