Shoaib Asghar
Shoaib Asghar

Reputation: 3

Multiple products in single charge Stripe?

My use case is that I have multiple products some of which are one time payment and others are recurring payment products. I want to charge the user only once so that the user doesn't have to pay for each product separately. According to my study we can create multiple product subscriptions with one charge. https://stripe.com/docs/billing/subscriptions/multiple-products#creating

If I had one-time payment products only, I can only receive one payment of the payment amount for selected products (as sum of prices).

But as I have mentioned I have some products which are recurring payment. So my question is if I add one-time payment products in this subscription request will they be charged again ones the recurring period overs, and if yes how can I Implement the above case in PHP?

Note: I want to implement this in custom form. I don't want to be redirected to stripe page.

Upvotes: 0

Views: 1044

Answers (1)

os4m37
os4m37

Reputation: 1133

You can use Stripe Checkout and combine both one-time and recurring prices3. You can follow this guide in order to integrate Stripe Checkout with PHP.

Here what it will looks like for combining both prices types, the first charge will be for both pricing, and the second charge will be just for the recurring price(s): Stripe Checkout Example - one-time and recurring prices

Upvotes: 0

Related Questions