#vin_dev
1 messages · Page 1 of 1 (latest)
Can you elaborate on your use case?
i am using payment element & may be subscription start after 10-12 days so so whenever subscription start money will deduct on that day. is it possible?
Sure, you'd just either need to:
- Set
billing_cycle_anchorto the specified timestamp when you create the Subscription (and passproration_behavior: 'none') - Use
trial_end
The Subscription will start immediately but with a free period up until the desired timestamp
Yep, you can just collect them after you create the Subscription. There'd likely be a pending_setup_intent returned on creation (as no immediate payment due), you can pass that to the Payment Element to collect payment details and then confirm/start the Subscription. Here: https://stripe.com/docs/billing/subscriptions/build-subscriptions?ui=elements#collect-payment
before subscription create is it possible?