#Vinny GG
1 messages · Page 1 of 1 (latest)
Hello, how can I help?
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?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
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?
then i can create a subscription without items and i can add later ?
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
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Thank you very much I will look at this documentation