Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Disclaimers:

Konnektive does not store any card details for merchants using Computop's Payment Gateway

Computop will work with landers that connect to Konnektive via Direct API. This will NOT work with Order Entry and/or Form-code.

STEP 1

Go to Merchant >Gateway Integrations, Scroll down to Computop and click the logo then click Activate button

STEP 2

Fill the fields then click Create MID button

STEP 3

Add the hidden input browserData inside of the same form as the card inputs

Code Block
languagehtml
<input type='hidden' name='browserData' id='browserData' value=''>

STEP 4

Add this script to your page before the closing body tag:

Code Block
languagejs
<script type="text/javascript">


const navigator = window.navigator;


const browserData = {


acceptHeaders: 'application/json',


userAgent: navigator.userAgent,


language: navigator.language,


timezone: (new Date()).getTimezoneOffset().toString(),


colorDepth: screen.colorDepth,


screen: {


height: screen.height.toString(),


width: screen.width.toString()


},


javaScriptEnabled: true,


javaEnabled: navigator.javaEnabled()


};


document.getElementById('browserData').value = JSON.stringify(browserData);


</script>