#livermorebill_api

1 messages ¡ Page 1 of 1 (latest)

keen fogBOT
#

👋 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/1230789522921361478

📝 Have more to share? Add more details, code, screenshots, videos, etc. below.

sonic anchorBOT
cold grotto
#

hi

balmy tangle
cold grotto
#

I guess what I need is to intercept the payment before it's made.

#

Can fingerprints do it?

balmy tangle
#

yes, it's possible, it really depends how exactly you've integrated and the means and API calls you use to collect the customer's card details.

cold grotto
balmy tangle
#

I don't think that's really the same concept no

cold grotto
#

For example, my rule is that after a certain bank card has purchased a subscription with a trial more than 10 times, the next time he purchases it he is not allowed to purchase it anymore

balmy tangle
#

makes sense, but that's not something that's possible to express in Radar rules as far as I'm aware.

balmy tangle
#

yep

cold grotto
#

Create User -> Create Subscription -> Get Payment Connection -> Connection Provided to User
This is the processing flow in my project

#

So what part of the process do I need to add fingerprinting judgments to

balmy tangle
#

possibly the "Get payment connection" part? I'm not sure, that's super highlevel.

#

do you have some specific details like exact code you wrote and API calls you make and how you frontend collects the payment details?

cold grotto
#

com.stripe.model.checkout.create

#

java

balmy tangle
#

are you using Checkout in mode:"subscription"?

cold grotto
#

yes

balmy tangle
#

then unfortunately it's not really possible to easily implement this sort of thing since you don't have a way to see the fingerprint during the Checkout page; you could only act on it after (for example cancel the user's subscription and contact them to explain why, when handling the Checkout completed webhook if you detect the card fingerprint they entered was one you know already).
Alternativel you'd need to use a more custom flow using Elements where you can more directly interact with the payment flow but that's a lot of work

cold grotto
#

What does a customized process look like

balmy tangle
keen fogBOT