#JoaoVitor
1 messages ยท Page 1 of 1 (latest)
Hey! The key fundamental difference is that a Payment Link is reusable, where as a single Checkout Session is not
(Payment Links actually create a Checkout Session under the hood when clicked)
So depending on your use case, one may be more appropriate than the other (i.e. are you working with a limited inventory?)
has link documentation checkout payment ?
other question , at checkout can I put types of payments that can be made?
Hi ๐ jumping in as my teammate needed to step away. I'm not sure I understand your question, could you try rephrasing it as a complete sentence?
Yes, you can control that via the payment_method_types parameter:
https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-payment_method_types
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
using checkout can I link to a customer?
Yes, via the customer parameter:
https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-customer
This is also discussed in our document that walks through how to use Checkout Sessions:
https://stripe.com/docs/payments/accept-a-payment?platform=web&ui=checkout#handling-existing-customers
๐ stepping in as toby needed to step away