The payment gateway allows you to use an iFrame to embed the payment and terms and condition details into your web site.

📘

Using the iFrame mode requires the merchant website to use the HTTPS protocol on all of its pages to ensure secure communication between the merchant's website and the OnePay gateway.

If you wish to implement a custom checkout experience while still limiting your PCI compliance, the recommended approach is to use the iFrame payment form.

Enable Plug in

  • Login to Virtual Terminal
  • Navigate to Settings and click on Plug in

Trusted URL - In production, you should set the allowed URLs for the iFrame to ensure that it can only be activated from the intended websites. You can separate multiple domains using commas. Ex: https://www.yourdomain.com , https://subdomain.yourdomain.com

CSS -The Style Sheet URL field is used to specify the URL of the style sheet to be used for the payment form, if the style is based on the generic OnePay style sheet. If the payment form is enabled with overriding CSS while invoking, the style sheet specified here will be ignored.**

Key - The key that will be generated by OnePay to be used as authentication key to authenticate the iFrame is a unique token that is used to verify the authenticity of the payment form and ensure that it is being accessed from a trusted source.

Account type- The account type checkboxes allow the merchant to select which payment options they want to offer to their customers. They can choose to display Credit Card or ACH or both as available payment options on the iFrame.

URL used for

Sandbox: Demo URL
Production: Prod URL

CSS Reference -

Embedding Plugin

The simple integration uses _<script>_ tag that must be added inside your payment _<form>_ tag. That script tag is replace with payment button that will open Plugin when clicked. After successful payment function the results will be added to surrounding <form> as hidden <input> tags

    <script id="scriptIframe" type="text/javascript" src="js/onepay_v2.0.js"
            data-token=""
            data-key="0D75E6A9-B83D-00A3-BFAB-1E1488CCE8A2"
            data-header="payment"
            data-displayMode="popup"
            data-mode="payment" >

    </script>

Configuration parameters

These parameters can be added to your <script> tag to configure Pay UI parameters.

Mandatory Field

ParameterDescription
data-key*The key generated by OnePay to authenticate Pay UI
data-mode*Accepted values: token, payment
token : will set the mode of the Pay UI for tokenization only
payment: will set the mode of the Pay UI for payment
data-displayMode*Accepted values: popup, inline
popup: will create a modal popup of the UI in a parent page
inline: will create a inline content within the parent page
data-cssURL of the stylesheet to be used by Pay UI
data-tokentoken value to be updated by the Pay UI
data-headerHeader text to be displayed
data-amountAmount for payment if data-mode is payment

Optional Field

ParameterDescription
data-firstnameAdd parameter to enter First name field on the UI
data-lastnameAdd parameter to enter Last name field on the UI
data-cityAdd parameter to enter City field on the UI
data-addressAdd parameter to enter Address field on the UI
data-stateAdd parameter to enter State field on the UI
data-zipcodeAdd parameter to enter Zip Code field on the UI
data-emailAdd parameter to enter Email field on the UI

When data-mode is payment in the script tag -

 MakePayment(amount, customerId, 'divCheckoutContent', 1, ShowResult)

amount: Configurable to set an amount to make a payment. This can be left empty if amount is entered on the webpage.

customerId: If customer id needs to be passed, for payment to the customer, mention id. This field can be left empty.

divCheckoutContent: This is the id to be passed a string, to render checkout in particular div element when data-displayMode="inline". For popup display mode, this value can left empty ““.

1: Indicator to display the Terms and Condition in the iFrame

Example HTML:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>PayOne</title>
</head>
<body>
    <h3>OnePay </h3>
    <div id="onepayResponseResult"> </div>

    <input id="onepayResult" type="hidden" />
    <input id="onepayToken" type="hidden" />

    <input type="text" id="txtAmount" value="" placeholder="Amount" maxlength="12" style="width:110px" />

    <button id="btnPayment"> Payment</button>
    <br /> <br />
    <input type="text" id="txtCustomerId" value="" style="width:150px" placeholder="CustomerId" />    

    <script id="scriptIframe" type="text/javascript" src="https://apidemo.onepay.com/PayUI/onepay_v2.0.js"
            data-token=""
            data-key="50d4b5d0-0780-da7d-7982-d1c9b1551e45"
            data-header="payment"
            data-displayMode="popup"
            data-mode="payment">

    </script>

    <br />

    <div id="divIframe1"></div>
</body>
</html>

<script>     
      
    btnPayment.onclick = function () {        
        let customerId = document.getElementById("txtCustomerId").value;
        let amount = document.getElementById("txtAmount").value;
        MakePayment(amount, customerId, 'divCheckoutContent', 1, ShowResult);
    }       
   
	function ShowResult() {
        document.getElementById("onepayResponseResult").innerHTML = document.getElementById("onepayResult").value;
    }

</script>