> For the complete documentation index, see [llms.txt](https://help.checkoutchamp.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.checkoutchamp.com/crm/gateway-setup/gateway-integrations/payxpert-3ds-v2.md).

# PayXpert 3DS V2

<figure><img src="/files/SKX3gXbSMmNHBcbGeLXB" alt=""><figcaption></figcaption></figure>

{% hint style="info" %}
Use this gateway to process 3DSecure 2.0. Use the PayXpert gateway to process 3DSecure 1.0.
{% endhint %}

**STEP 1**

Obtain **originatorId** and **APIKey** from PayXpert.

&#x20;

**STEP 2**

Click the PayXpert gateway tile and press the <mark style="color:green;">+ Activate</mark> button

<figure><img src="/files/yL2OaoHLOQwgJOP1wO2a" alt=""><figcaption></figcaption></figure>

Add your credentials. Press the <mark style="color:green;">Create Gateway</mark> button to save.

{% hint style="info" %}
Steps 3-5 are necessary only if hosting your own checkout. Skip these steps if your checkout page is hosted by Checkout Champ.
{% endhint %}

**STEP 3**

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

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

**STEP 4**

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

```
Script to get browserData:
<script type="text/javascript">
    const navigator = window.navigator;
    const browserData = {
        acceptHeader: 'application/json',
        colorDepth: screen.colorDepth,
        javaEnabled: navigator.javaEnabled(),
        javaScriptEnabled: true,
        language: navigator.language,
        screenHeight: screen.height,
        screenWidth: screen.width,
        timeZoneOffset: (new Date()).getTimezoneOffset().toString(),
        userAgent: navigator.userAgent
    };
    document.getElementById('browserData').value = JSON.stringify(browserData);
</script>
```

**STEP 5**

Enable 3DS instructions on the checkout page

[Direct API 3DS Instructions](/crm/gateway-setup/direct-api-3ds-instructions.md)
