Hosted Fields: how to embed payment form on a website

Hosted Fields allow you to embed card input fields on your website or app, fully adapting them to the system's design. They create a seamless interface experience and eliminate the need to redirect the customer to an external payment page. This improves usability and conversion rates.
The input fields for the card number, expiration date, and CVC are represented as an iFrame. We provide the ability to fully customize their CSS and embed them on your site as a single frame.
Tutorial
Setup
<span class="u-richtext-counter">1</span> In the <span class="u-richtext-element">Settings</span> → <span class="u-richtext-element">API Integrations</span> section, enable Hosted Fields for the required integration.
<span class="u-richtext-counter">2</span> Click on the <span class="u-richtext-element">Hosted Fields Settings</span> button, customize the CSS styles, and specify the domains where the iFrame will be placed. Domains should be entered on separate lines. Subdomains must be added separately or specified in the format *.domain.com
.
<span class="u-richtext-counter">3</span> On your website’s payment page, place an iFrame, assign any custom value to its <span class="u-richtext-element">id</span> parameter, and in the <span class="u-richtext-element">src</span> parameter specify the payment URL (payment_url
) returned by Allpay in response to a payment creation request (see Payment request section in the API Reference). Payment URLs can also be generated using the Allpay API Tester.
<span class="u-richtext-counter">4</span> Add the following script to the payment page:
1<script src="https://allpay.to/js/allpay-hf.js"></script>
2 <script>
3 let Allpay = new AllpayPayment(
4 {
5 iframeId: 'iframe_id',
6 onSuccess: function() { alert('Payment success'); },
7 onError: function(error_n, error_msg) { alert('Payment error: ' + error_n + ' (' + error_msg + ')'); }
8 }
9 );
10 </script>
In the script, replace the following parameters with your own:
- <span class="u-richtext-element">iframeId</span> — the id value of your iFrame.
- <span class="u-richtext-element">onSuccess</span> — the handler for successful payment completion (what should happen after successful payment).
- <span class="u-richtext-element">onError</span> — the handler for payment errors. For example, you can display the payment error message on the page.
<span class="u-richtext-counter">5</span> To initiate the process, execute the function <span class="u-richtext-element">Allpay.pay()</span>, for example, by assigning it to the "Pay" button:
<button onclick="Allpay.pay();">Pay</button>
Installments
If you enabled the installment option for the customer when creating the payment by passing a value in the <span class="u-richtext-element">inst</span> parameter, a field for selecting the number of payments will automatically appear in the frame.
Quick Pay Buttons
Apple Pay and Bit buttons will not be displayed in preview mode or within the iFrame if they are not activated in the <span class="u-richtext-element">Settings</span> → <span class="u-richtext-element">Modules</span>.
Additionally, these buttons are not displayed in test mode. As well as in live mode for installment or subscription payments.
FAQ
Does your API support hosted fields?
Yes. Card input fields can be embedded into your website or app, fully adapting their design. Learn more about Hosted Fields.