Home > Blockchain >  Stripe - Radar Rules
Stripe - Radar Rules

Time:10-11

Hope you are doing well. I am going through the following documentation of Stripe "https://stripe.com/docs/radar/radar-session". In the following page it is mentioned We have to create Radar session at client side and send it your server and after that we have to send from server to stripe. So my question is where we have to define rules (Block if :card_country: = 'CA' OR :card_country: = 'DE' OR :card_country: = 'AE') at client side or server side?

CodePudding user response:

You create the rules in your Stripe account's dashboard, not through code neither on the front or backend. https://dashboard.stripe.com/test/radar/rules

  • Related