# Merchant Warrior

**STEP 1**

Go to **Merchants** → **Gateway Integrations** and activate the Merchant Warrior tile with the “**+ Activate**” button

<figure><img src="https://1103784913-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FiAC0G99SjXjSv2GM5PAE%2Fuploads%2F31yXOsGYJYAMWIEcmJsm%2Fimage.png?alt=media&#x26;token=0c83cb22-213a-4049-a6eb-58bc50a0281a" alt=""><figcaption></figcaption></figure>

**STEP 2**

Enter the **merchantUuid, apiKey,** and **apiPassphrase** from your Merchant Warrior account. To enable 3DS transactions, set **Secure3DS** to “Yes.” Press the green “Create Gateway” button to create your Merchant Warrior gateway.

<figure><img src="https://1103784913-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FiAC0G99SjXjSv2GM5PAE%2Fuploads%2FlZJr2HsTMAWlDTVsisRC%2Fimage.png?alt=media&#x26;token=68bdf524-dcbc-454a-b0db-52d597822160" alt=""><figcaption></figcaption></figure>

**STEP 3**

Apply the gateway to your offers and upsells within the campaign.

**Secure 3DS:**

If using native (challenge) 3DS, be sure to follow proper instructions on the checkout page

[Basic 3DS Instructions](https://help.konnektive.com/konnektive-crm/gateway-setup/basic-3ds-instructions)

3DS requires that certain browser information be included on the Import Order API call:

* Add a hidden input for browserData

```
<input type="hidden" name="browserData" value="" id="browserData">
```

* Add below script before closing “body” tag.

```
<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> 
```
