#clutch_docs
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1290519582225989773
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
What do you mean by " link Stripe hosted dynamic checkout to a webhook from a 3rd party SaaS " ?
Can you use a redirect with url params or a webhook to directly make a payment page on demand
I mean that I wish to create a product page "on demand" based on parameters a user selected in an input form
I looks like the "Webhook" that you refer to is different from the Stripe webhook https://docs.stripe.com/webhooks
this is my biggest difficulty is the naming of the various stripe products don't make much sense to me
I dont know which product fits my usecase
Ok, so basically you want to build a server that takes in the input from your customer, ad return a checkout page URL?
Sure, you can follow this guide https://docs.stripe.com/payments/accept-a-payment?platform=web
I was under the impression I could host it within stripe and interact through the stripe cli
is that not possible?
No Stripe doesn't provide server hosting service
that sorta what i dont understand
Stripe charges 10$ to use your own domain i believe so when the checkout runs on Stripe.com but im hosting it how does that work
Yes you can use you own doamin for Stripe checkout page.
But still you still need to host a server to accept input from your cusotmer and create a checkout session.
If you are not familiar with coding, I'd highly recommend you hire an experience engineer to help you bulid an integration
The problem is I am familiar with programming but unfamiliar with understanding confusing documentation
are payment links for single time purchases?
This link offers 3 options, my question is which option fits my use case.
- do embedded checkout allow dynamic payment options or does that only apply for stripe hosted checkout
Yes dynamic payment methods is supported in embedded checkout
And using checkout popup/embedded is it possible to use the webhook/stripe webhook to create the checkout session
without having to create and manage the session on your own server
As I said earlier, Stripe doesn't provide hosting service, you need to host your server.
And if you read the doc that I share earlier. Stripe webhook is an event sent to your server, Stripe webhook itself isn't a server.