Hi Pals,
I am in Nigeria and want to use a Nigerian payment gateway called VTN. Below is the sample code they gave me about accepting payment online. Can anyone help me on how to integrate it to Nopcart.
<form name="frmsendpaymentrequest" method="post" action="https://www.virtualterminalnetwork.com/Merchant/ConfirmPayment.asp"> <input type="hidden" name="merchant_email_id" value="your_merchant_emailid@domain.com"> <input type="hidden" name="callback_id" value="BEADACFE250E4769ABB9B6270490AB1E"> <input type="hidden" name="amount" value="200"> <input type="hidden" name="item_name" value="Sample Item"> <input type="hidden" name="return_url" value="http://www.your_domain.com/success.asp"> <input type="hidden" name="cancel_url" value="http://www.your_domain.com/cancel.asp"> <input type="hidden" name="custom_remarks" value="sample remarks"> <input type="submit"> </form>
merchant_email_id: Your Merchant Mail ID
callback_id: Your unique callback ID which was created in your Merchant Account for this website. This id would hold your domain url to which VTN would post a call back regarding this transaction. Click here to find, how to create a call back id for your website in VTN.
amount: The amount you wish to collect from your customer
item_name: Name of the item or service
return_url: The URL to which the customer’s browser is returned after completing the payment; for example, a URL on your site that displays a “Thank you for your payment” page.
cancel_url: A URL to which the customer’s browser is returned if payment is cancelled; for example, a URL on your website that displays a “Payment Canceled” page.
custom_remarks: Stores the custom remarks for this transaction. You could store your session id or order number or any other value in this variable.
Please help. Thanks.
