#noidea6034
1 messages ยท Page 1 of 1 (latest)
Hi ๐ I think the best fit we have for that is to create a Checkout Session and set those to create an Invoice on completion.
https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-invoice_creation
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
but sir it support one-time payments. only
i need customer to subscribe and later it will be recursive in its flow
because we only need to verify it for the first attempt
we have issue with failed invoices if customer successfully subscribe first time
thanks for the help
Oh, I didn't realize you also wanted to use Subscriptions. In that case, no, it is not possible to accept a payment before creating an Invoice.
Create we create this flow for the first time
1- we create a direct payment for the first signup
2-we create a subscription without charging the customer
You could do that, by creating a Subscription that starts with a trial period for Step 2.