#waqas-invocie
1 messages · Page 1 of 1 (latest)
Actually customer is register in our system and we are generating invoice for that customers. We want customer will pay through that link.
makes sense. What's the problem?
Issue is when I generate invoice..On Invoice link stripe demands card info from user. Users already add their CC info while registering through our system.
and CC info is also save in stripe.
This is not working.
the hosted invoice page doesn't display the customer's saved payment methods yes
that's not an Invoice though? That's the API documentation for Checkout.
Ohh... Can checkout show payment method??
under some circumstances yes(as highlighted in your screenshot). You can't use Checkout to pay an Invoice though.
Actually we want to collect payment from our customer without login from our system. Our customer only first time register on stripe by adding CC info through our website. Next time we will send links for payment. What you suggest best way using stripe.
I'd use https://stripe.com/docs/payments/save-and-reuse and then build my own payments page on my website for the 'links' that presents details of the saved cards and processes a payment against them
@severe kelp I am creating session. I am also passing mode == "payment" and also passing valid customer id as a param but when I open link customer CC info is not entered although email is shown.
yes, this feature is a little difficult to make it work
it only works if the customer has previously entered their card through Checkout as well, and click the "save my info" during that attempt, I believe. It doesn't just show any saved card on the customer
if you specifically need to rely on the customer being able to see and pay with saved cards, you should build it yourself as I mentioned earlier since it's not really what Checkout is designed for