Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Current »

Konnektive CRM is integrated to Maverick’s 3DS proprietary payment gateway version 1.0 and version 2.1.

To activate a Maverick gateway, go to Konnektive | Merchants | Gateway Integrations and select the Maverick tile.

Select the green Activate button

Specify your Maverick account credentials along with the MID configuration details and select Create MID.

Once the Maverick MID has been created, it can be assigned to your campaigns and you can begin processing payments.

Note:

A step in the 3DS processing is passing browser data on the initial order/import API call.

Review this example of one method to send browserData parameter.

browserData input to be added to checkout page:
<input type="hidden" name="browserData" value="" id="browserData">

Script to get browserData:
<script type="text/javascript">
    const navigator = window.navigator;
    const browserData = {
        acceptHeader: '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>

  • No labels