#suren-checkout-subscription
1 messages ยท Page 1 of 1 (latest)
Hi ๐ no Checkout Sessions cannot create Subscription Schedules.
Can you confirm whether you were referring to our Subscription Schedule objects when you referenced "schedule subscription"?
Could you try restating your second question, I'm not sure I'm understanding what you're asking?
yes you are right! and the second question is can I create specific interval for subscription ? for example once a 3 month
Yes, that is defined either by recurring.interval_count on the Price that you're using:
https://stripe.com/docs/api/prices/create#create_price-recurring-interval_count
Or in items.price_data.recurring.interval_count if you're creating Prices in an ad-hoc fashion:
https://stripe.com/docs/api/subscriptions/create#create_subscription-items-price_data-recurring-interval_count
look at this example recurring: { interval: 'month', interval_count: 3 }, unit_amount: 100, currency: 'usd', product: 'prod_asdasd'
if I configure like this it will be equal interval once a 3 month ?
Looks like it will, are you seeing something different when you run that?
No I just want to understand what the different when I create subscription with interval month and with that example
okay I will check that if I will have another question I will ask