#ЕленаГрос
1 messages · Page 1 of 1 (latest)
What api method to use to get payment link using permanent token?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
How to enable auto payments, recurrences?
Which method to use in order to receive a permanent token when paying for the payment link
How to get a customer token that can be used for payment without specifying customer card details?
That's not really how payment links work
And what do you mean by token that can be used for payment without specifying card details?
- When paying for the payment link for the first time, the client specifies the card details and the api returns the token.
- When creating the second payment link, I indicate the token and the client will not need to specify the card details, the amount will be debited from the card automatically
Hi there 👋 taking over, as my colleague needs to step away
Give me a few minutes to get caught up.
How to get a payment link for re-payment using a customer's saved token?
You can create a Customer using this parameter when you create the Payment Link via the API: https://stripe.com/docs/api/payment_links/payment_links/create#create_payment_link-customer_creation
Once a Customer object is created and the first payment is accepted, a new Payment Method token is create, which you can use later for making more payments without the customer coming back to enter their payment details
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.