#Serinya-terminal
1 messages ยท Page 1 of 1 (latest)
I want to make pay-to-enter system, but want to make whitelist for no-charge
Like employee's cards
I want to charge only if isn't listed on whitelist.
Yes, this is possible. Here's the doc: https://stripe.com/docs/terminal/features/saving-cards/save-cards-directly
So, you will create a payment method on the customer and retrieve the payment method information: https://stripe.com/docs/api/payment_methods/retrieve
fingerprint and last4 will be present in the PaymentMethod retrieval response
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Okay, thanks!
but I don't want to create any customers
can I just create setupIntent without customer id?
You should be able to. I'd suggest giving it a try in test mode
Okay thanks!