#vipul
1 messages · Page 1 of 1 (latest)
hi, could you elaborate on exactly what your goal is?
I am Charging subscription based payment to my users and using Stripe checkout session for payment (I am using 3DS cards as well).
I want to show billing details to my user and want to show card details (Last 4 digits) so they know what current payment card (Method) they are using
Checkout doesn't really charge an existing card or show details of saved cards, that's not what it's for(it's for acceping and charging new payment details)
maybe look into https://stripe.com/docs/no-code/customer-portal for you use case
Then how recurring subscription works with checkout?
it doesn't, Checkout is not involved in the recurring payments
the recurring payments use our Subscriptions and Invoice products. Checkout is just for creating the Subscription.
Yeah how subscription will charge next time?
If we don't have any card details stored?
you do have details stored, because that's what Checkout is for(collecting and storing those details and creating the Subscription).
Lets say I have created subscription using checkout session? Would it not charge automatically next month?
it would
Then we don't have payment details stored anywhere if it will be automatically charged?
I don't understand that question
I am creating a subscription using above mentioned methods. Now I want to show User next billing , Payment method used currently, etc. Without using customer portal
What is the way to do it?
well the easiest way is to use the portal
but otherwise all the information is available in the API and you can build your own views for displaying it in your site to your users
- Which API has those details?
- How to intgerate customer portal?