#tymm
1 messages · Page 1 of 1 (latest)
Hi there, what kind of page are you looking for?
im looking at this, but it requires onboarding?
https://github.com/stripe-samples/connect-destination-charge-checkout
i just wanna quick look at the page and how u show the "powered by stripe" thingy
im actually trying to make a custom payment page because the hosted session and invoice url cannot satisfy my needs
So you want view a sample Checkout page?
i wanted to have backdating and billing cycle anchor for my subscriptions and iirc session doesnt support this?
You are going too fast, let me answer your questions one by one
i just wanna quick look at the page and how u show the "powered by stripe" thingy -> https://checkout.stripe.dev/ you can view an example here
im looking for any solution that can let me make a custom checkout/ payment page so i dont have to do it from scratch
Sure, take a look at the checkout example that I shared earlier and let me know if you have any questions
i wanted to have backdating and billing cycle anchor for my subscriptions -> You can use Checkout session to create a backdated subscription, but you can do it from Dashboard or API (https://stripe.com/docs/billing/subscriptions/backdating)
yes, i have already done it, what im asking was that now i need a payment page to go with it
Yes, you need to write some code to create a checkout session. If you prefer no-code solution, you can also use paymentLink
Share me some code?
how do i create a checkout session with an already created but not yet paid subscription?
can i share u the subscriptionid instead?
sub_1LkgnSLK0bfo5HSbl3LN4tTN
OK. I think I understand your use case now. You can't use checkout session since you already created a subscription, but you can use this integration flow (https://stripe.com/docs/billing/subscriptions/build-subscriptions?ui=elements) to continue.
Another flow that I'd recommend is to use setup mode Checkout session to collect a payment method first, so that you attach the collected payment method when creating a subscription. In this way you don't need to build you own custom payment page.
i've done this actually, but preferably i would want stripe to provide a page to let the customer to choose which card to proceed from their already save cards
does stripe provide anything like that? or can this integration flow u shared do that?
Checkout supports this out of the box if you've enabled Link
Please note that the Checkout page will display the cards that the customer has saved with Link, it may be different from the existing card payment_methods are attached to the customer.
but this requires customer to signup an account on link?
The registration is frictionless, basically the customer just need to enter a phone number for OTP verification.
oh well. i think the best solution for my use case is to just create a page for customers to choose their saved card and then make the payment in the backend through paymentintent attaching their selected paymentmethod...
I'd suggest you to try out Link with Checkout and see if it works for you before spending time to work on your won payment page.
but with checkout session i cannot make a subscription that has backdate and billing cycle anchor...
Maybe you missed this message
👉 Another flow that I'd recommend is to use setup mode Checkout session to collect a payment method first, so that you attach the collected payment method when creating a subscription. In this way you don't need to build you own custom payment page.
Yes, this is a setup mode checkout page.