#alex.esch
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- alex.esch, 5 days ago, 18 messages
Sure, how can I help?
Hello
well,we have a pretty complicated flow right now
let me explain
right now, we are selling a bundle which one includes a subscription, by using paymentintent with a fixed price
the subscription is being created and activate, couple of weeks AFTER the user bundle purchase
so everything is working fine
but in stripe, we see single payment with only some metadata
now, we would like to split this
as far i have understood
instead of creating a new payment intent
we can create an invoice which one will contain invoice items
- bundle itself
- subscription itself
so at this way, we will be able to see in stats, our monthly MRR
but, right now, i'm trying to create this kind of invoice with 2 items
but, i'm getting an error
The price specified is set to type=recurring but this field only accepts prices with `type=one_time
the second item is of type PLAN, not price
Hi! Can you share the request ID (req_xxx)? Here's how you can find it: https://support.stripe.com/questions/finding-the-id-for-an-api-request
Find help and support for Stripe. Our support site provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
just a sec
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
so our goal, is to create an invoice with 2 items
- simple product
- subscription
the subscription will be created and right after that, paused (canceled)
it will be reactivate after some weeks
Yup, you can only create invoice item with price type=one_time
No I don't think you can use Invoicing APIs to create subscriptions.
You should use Subscriptions or Checkout Sessions API instead
https://stripe.com/docs/billing/subscriptions/build-subscriptions?ui=stripe-hosted I'd suggest you to use checkout sessions API for your subscription integration.