Payment window
Below a number of simple examples of the possibilities in QuickPay payment window
Payment window providing all payment methods
Below is what it takes to make a simple payment window. Ie insert these lines HTML on your website in order to open QuickPay payment window and receive payments. The different values should of course be naturally adapted to the merchant.
| <form action="https://secure.quickpay.dk/form/" method="post"> <input type="hidden" name="protocol" value="4" /> <input type="hidden" name="msgtype" value="authorize" /> <input type="hidden" name="merchant" value="86189919" /> <input type="hidden" name="language" value="da" /> <input type="hidden" name="ordernumber" value="1274168351" /> <input type="hidden" name="amount" value="100" /> <input type="hidden" name="currency" value="DKK" /> <input type="hidden" name="continueurl" value="http://quickpay.net/features/payment-window/ok.php" /> <input type="hidden" name="cancelurl" value="http://quickpay.net/features/payment-window/error.php" /> <input type="hidden" name="callbackurl" value="http://quickpay.net/features/payment-window/callback.php" /> <input type="hidden" name="autocapture" value="0" /> <input type="hidden" name="cardtypelock" value="" /> <input type="hidden" name="splitpayment" value="1" /> <input type="hidden" name="md5check" value="d2259d9db077e0f5a41b4bf271c3c549" /> <input type="submit" value="Open Quickpay payment window" /> |
Payment window where the card holder does not have to pick credit card
If you want to reduce the number of steps in the payment process and do not want the user to make an active choice of payment method it is possible. Try setting the $cardtypelock to creditcard.
Please notice: When using this option the users can not pay with methods like eDankort, Payex, netbanks.
| <form action="https://secure.quickpay.dk/form/" method="post"> <input type="hidden" name="protocol" value="4" /> <input type="hidden" name="msgtype" value="authorize" /> <input type="hidden" name="merchant" value="86189919" /> <input type="hidden" name="language" value="da" /> <input type="hidden" name="ordernumber" value="1274168351" /> <input type="hidden" name="amount" value="100" /> <input type="hidden" name="currency" value="DKK" /> <input type="hidden" name="continueurl" value="http://quickpay.net/features/payment-window/ok.php" /> <input type="hidden" name="cancelurl" value="http://quickpay.net/features/payment-window/error.php" /> <input type="hidden" name="callbackurl" value="http://quickpay.net/features/payment-window/callback.php" /> <input type="hidden" name="autocapture" value="0" /> <input type="hidden" name="cardtypelock" value="creditcard" /> <input type="hidden" name="splitpayment" value="1" /> <input type="hidden" name="md5check" value="d2259d9db077e0f5a41b4bf271c3c549" /> <input type="submit" value="Open Quickpay payment window" /> |
Try it yourselves
Of course it is possible to dynamically manage a number of elements in the payment window. Below, you can try changing some of the different options.
Change language in payment window.