We use and recommend Riskified for fraud protection and risk assessment. If you are interested in minimizing your fraud risk please contact our sales team to get started.

How does it work?

  1. The website needs to serve the Riskified Beacon on every page.

  2. An order is placed by a Client of a website.

  3. The website will need to send us the Client's session_id information.

  4. We process the Client's credit card using Stripe.

  5. The Client's session_id information is then sent to Riskified.

  6. Riskified assesses this information and provides us back with a decision on fraud status.

  7. Riskified sends an answer back to us, and if the order passes fraud validation, the order process on our end will continue and Stripe will charge the card.

Riskified Beacon

In order to collect information regarding each order, the JavaScript snippet below must be added to the header of each of the site’s checkout pages.

Variables to set up:

<script type="text/javascript">
//<![CDATA[
(function() {
  function riskifiedBeaconLoad() {
  
    var session_id = 'INSERT_UNIQUE_SESSION_ID_HERE';
    
    var store_domain = 'ticketevolution.com';
    var url = ('https:' == document.location.protocol ? 'https://' : 'http://')
      + "beacon.riskified.com?shop=" + store_domain + "&sid=" + session_id;
    var s = document.createElement('script');
    s.type = 'text/javascript';
    s.async = true;
    s.src = url;
    var x = document.getElementsByTagName('script')[0];
    x.parentNode.insertBefore(s, x);
  }
  if (window.attachEvent)
    window.attachEvent('onload', riskifiedBeaconLoad)
  else
    window.addEventListener('load', riskifiedBeaconLoad, false);
})();
//]]>
</script>