#kanzaki_link_paymentmethod
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
๐ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1216785969294872697
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi ๐
To create a Link payment method you will just need to emable Link in the Payment Element and then select "Save payment method with Link" checkbox when you fill out the element with your card details.
so I have to do it from the front-end, can I also do it from the backend, or the stripe dashboard ? thank you
You can do it via the API if you want
You can create Tax Rate objects using the API: https://docs.stripe.com/api/tax_rates/create
Wait sorry
wrong thread
You need to do this through your front-end
Link requires a direct interaction with the Customer
so you cannot do it on the back-end
thank you, can I create a link payment method using a test credit card ?
Yes, I just did in my test integration. But you will need to associate it with a Customer in order to save it for later use.
Using a flow that either just saves the Payment Method: https://docs.stripe.com/payments/save-and-reuse
or one that saves it as part of a payment: https://docs.stripe.com/payments/save-during-payment
alright, thank you