#hakan_

1 messages · Page 1 of 1 (latest)

worldly flameBOT
digital walrus
#

You can't. Payment Links require that a Product and Price already be created, and they additionally are not customer-specific.

What is the flow that you're trying to build?

weak ivy
#

i just want to send an link to an payment let's say $500 USD to an client...

#

how that can't be possible 😦

digital walrus
#

Do you want it to be single-use?

weak ivy
#

yeah, i want to charge him and store his cc, so I can later automatically charge the card.

#

ofc he would not tell his data like cvc number etc, i saw the other option

ancient swallow
#

Hey Hakan, I have a sub solution I've used in the past via Stripe happy to share it, just sent a DM

digital walrus
#

If you want single-use, then Payment Links are not the right approach. Payment Links are designed to be made publicly accessible so many customers can use them.

If you need an Invoice to be associated with the payment, then you'll likely want to create an Invoice object and direct your client to our Hosted Invoice Page that is generated for Invoices.
https://stripe.com/docs/invoicing

If you don't need an Invoice, and still want to use a hosted experience, then you'll want to look into Checkout Sessions.
https://stripe.com/docs/payments/accept-a-payment?platform=web&ui=checkout

#

@ancient swallow quick friendly reminder that self-promotion is against our #📖rules.

weak ivy
digital walrus
#

Checkout Sessions are designed for collecting payment method information, and can be configured to collect address information as well.

weak ivy
#

what you mean

#

how can I do that

#

that sounds like it would be useful for my case

digital walrus
weak ivy
#

ahhh, that one is bascially for collecting payments and address. so i will be able later to retrieve this client and send invoice and charge automatically his cc right?

#

if yes, it is what i am searching

#

hm, that is code though. can I do exaclty that in the dashboard?

digital walrus
#

I'm not entirely sure, but I don't think so. This is a developer forum so we primarily focus on helping developers who are writing code to integrate Stripe with their project, and I'm not too familiar with the Stripe dashboard.

weak ivy
#

so it seems easier to write invoices, got you.

digital walrus
#

Those also use code

#

Though I guess they may be easier to do via the dashboard.

weak ivy
#

just want an easy way yes

#

dont want to spin up a full blown server pipeline 😄 to just do one invoice

digital walrus
#

An Invoice via the dashboard probably is the way then.

weak ivy
#

thanks a lot!

digital walrus
#

Happy to help!