#bubblegum.btc
1 messages ยท Page 1 of 1 (latest)
Hey!
none yet, I'm not sure what's the better option for me. I want to have the exact same page like the example image I've attached
You can with Checkout Session, using mode: setup: https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-mode
With Payment Links this is not possible.
Let me try
From Checkout Session, will I also get a link like with Payment Links?
btw, I'm using make.com (low-code solution) to integrate everything
Checkout Session and Payment Link are two different products.
I don't have much coding experience
You can't use Payment Links if you want to save a card without payment.
You will need the help of a developer then.
these are the options that I have... Can I do it somehow by using the "Make an API Call" feature or "Create Payment Intent" ?
I know nothing about any of this, sorry. What I can say is that what you want to do is called a Checkout Session, and this is the endpoint to create one: https://stripe.com/docs/api/checkout/sessions/create
alright, thanks a lot tho!
Can I do it somehow by using the "Make an API Call" feature or "Create Payment Intent" ?
You can accept payment with this yes, but you will have to build your own payment page then. And again this would require the help of a developer.
alright
and how can I customize that page so the button at the bottom says "Save Card" and it won't initiate a payment
?
I told you: create a Checkout Session with mode:setup.
alright, will try. Thanks
@full depot I assume this is right? "POST" as Method, and the url
now I can integrate headers, query strings, and a body code
No idea how Bubble works, sorry. You can try asking Bubble support.
oh... this is make.com
can you please just tell me what is the header and the body? I think I could just copy and paste that code and input my own variables
and one last question, if I get this done, where do I receive the link to that checkout page where the customer can save their payment information?
๐ stepping in as soma needs to step away
The expectation is that you are a developer here and you write your own code and we help you with questions about our API. We can't show you how to use a third-party tool that we don't have any experience with.
hey @topaz fractal ๐
So unfortunately we won't be able to help you too much here.
In terms of
if I get this done, where do I receive the link to that checkout page where the customer can save their payment information?
After you create a Checkout Session, the URL is returned in theurlproperty on the Checkout Session object: https://stripe.com/docs/api/checkout/sessions/object#checkout_session_object-url
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Thank a lot, this helps!