#ykmb_best-practices

1 messages ¡ Page 1 of 1 (latest)

north lavaBOT
#

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

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

rocky pier
tacit gale
#

I see, thanks for the quick response. I have a few follow up questions

  1. If a customer needs 3DS auth (e.g. card from India), then should we make them go through the 3DS pop up flow when they sign up for the trial? (when the setup intent is created)
  2. Using set up intent only sets up the payment, but does not do any fraudulent checks on the card. Is this understanding correct?
  3. From what I understand, the Radar fraud prevention rules are more like "charge-time" rules, but they don't do anything until there is an attempt to charge. Is this understanding correct? Trying to see if we can use some rule / model that stripe provides to do an early diagnosis of if the card is legitimate (does not need to be bullet proof)
  4. To confirm, stripe does not offer the ability to create a test charge on a subscription?
rocky pier
#

#2: That depends on what you mean by "fraudulent checks". Can you provide more details?

tacit gale
#

#2: That depends on what you mean by "fraudulent checks". Can you provide more details?
E.g. stolen credit cards, credit card testing

rocky pier
#

#4: What exactly do you mean by "test charge" here?

tacit gale
#

#4: What exactly do you mean by "test charge" here?
E.g. try to charge $1 to the card, then do a refund.

rocky pier
#

The Setup Intent will perform some level of validation, including checking to see if the card number itself is valid, but it doesn't confirm things like if there's any available balance or things like that. The specific validation steps performed also depend on the specific payment method and set up in each particular case.

#

Setup Intents will often perform a $0 validation with the card issuer, but in some cases they may also perform a $1 validation. We control that on our end, it's not something you can force to happen. You can, however, take a $1 payment yourself, but it's not recommended to do so just to validate the card.

tacit gale
#

Setup Intents will often perform a $0 validation with the card issuer, but in some cases they may also perform a $1 validation. We control that on our end, it's not something you can force to happen. You can, however, take a $1 payment yourself, but it's not recommended to do so just to validate the card.
I see, good to learn this