#torec
1 messages · Page 1 of 1 (latest)
Hi there!
Hi
- I can't use Stripe Checkout, or any of the UI\UX that Stripe offer correct?
Why do you say that? I don't see why not.
is it possible to bill a user with one time fee and a subscription at the same time?
Yes
ACH also support Subscription?
Yes: https://stripe.com/docs/payments/payment-methods/integration-options#payment-method-product-support
Is there an example of One time fee and Subscription together?
What would be the tool I would need to use? I thought it would be a complex scenario.
I actually build already a client side that accomplish the card. now I need to do the billing part. which is the complex part 🙂
If directly creating a Subscription obejct:
- Add the reucurring price(s) in
itemshttps://stripe.com/docs/api/subscriptions/create#create_subscription-items - And the non-recurring price(s) in
add_invoice_itemshttps://stripe.com/docs/api/subscriptions/create#create_subscription-add_invoice_items
For Checkout Session, put all the price (recurring and non recurring) directly inline_itemshttps://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-line_items
What would be the tool I would need to use? I thought it would be a complex scenario.
Step 1: build your own UI for the user to tell you which option they want.
Step 2: use Payment Element or Checkout Session to actually accept the payment.
Ok. Thank you. I'll try that. Step 1 is done. Up to part 2.
What do you think will be more recommended to look at first.
Payment element or checkout session?
We recommend Checkout Session because it's simpler to implement and usually works better (since it's hosted by Stripe).
You can learn more about Checkout Session with subscriptions here: https://stripe.com/docs/billing/subscriptions/build-subscriptions
Hi os4m37, I asked a similar question which you helped me before.
OK. so I just played with Checkout Session and it seems to work so this is great. for point 4..
this is a graduated price but this is a one-time payment. what kind of product do I need to create in Stripe in order to make it work.
can I create a "Temporary Product" dynamically named it and give it a price? is that the solution?
For on-time payment, you need to manage the graduated price by your own (your integration) and use PaymentIntent/Manual Invoice in order to charge the customer. Or create a Subscription/Subscription Schedule for one billing period (it can be just one day) and then cancel the subscription
but how do I add it to the "Item_list" in stripe checkout? can I do Manual Item? in stripe session checkout
I already managed the price on my integration, I'm working on the billing part now.
OK thank you, I will try that. I will probably have more questions later, is it possible to keep it open?
on success, I would need to "look-out" for a webhook correct?
and where do I add\remove options like apply pay and such?
thank you!!!
you are all awesome!
on success, I would need to "look-out" for a webhook correct?
https://stripe.com/docs/payments/checkout/fulfill-orders
and where do I add\remove options like apply pay and such?
BY default Apple Pay and Google Pay are activated:
https://stripe.com/docs/connect/automatic-payment-methods?connect-payment-integration-type=checkout&connect-charge-type=direct&connect-account-type=standard#integrate
make sure to activate what you need to activate in your PaymentMethods settings:
https://dashboard.stripe.com/settings/payment_methods
Thank you very much!
Np!