Feature proposal #8399
closedStripe: get rid of the initial trialing period for payment intent subscriptions
Description
Currently we're calling confirmCardPayment, etc.. basically confirm api to confirm a payment initially. This results in the subscription needing to be created with a delay using trial_end. However for payment intents we can instead just capture the payment method using createPaymentMethod API. Next we'd pass that method to the create subscription API and handle the initial payment in add_invoice_items as we've done already for checkout and source/token usage.
This won't really have a functional difference, but cleans up the behavior and makes subscriptions make more sense in Stripe dashboard.
Updated by krileon over 3 years ago
Maybe handleActions should be used for confirmCardPayment instead? Needs further review. Alternatively only use the createPaymentMethod usage strictly for recurring subscriptions. The main issue is Payment Intents cannot be created with recurring payment details so it maybe better to just wait for Stripe to further improve Payment Intents.
Updated by krileon almost 2 years ago
- Status changed from Assigned to Resolved
- % Done changed from 0 to 100
SetupIntents are now exclusively used for recurring payments which now gets rid of the initial payment intent behavior.