warm tips: an easiest way for Epay SCI integration

Warm Tips: an easiest way for Epay SCI integration----add below code into your website script. (need to change some value, check our image)

 <span style="text-align:right"> <form name="form1" method="post" action="https://api.epay.com/paymentApi/merReceive" > <!--PAYEE ACCOUNT :--><input name="PAYEE_ACCOUNT" type="hidden" value="1441629882@qq.com" size="40" /><!--User’s Epay account --> <!-- PAYEE NAME:--><input name="PAYEE_NAME" type="hidden" value="Three little squirrels nuts" size="40" /> <!--The business name that Merchant wanted to displayed on Epay system trading page. For example: "three Squirrel Nut shops."--> PAYMENT AMOUNT:<input name="PAYMENT_AMOUNT" type="text" value="100" size="30" /><select name="PAYMENT_UNITS"><option>USD</option><option>HKD</option><option>GBP</option><option>EUR</option></select><br><br> PAYMENT ID&nbsp;&nbsp;:<input name="PAYMENT_ID" type="text" value="20160314112533" size="40" /><br><br> <!--The value of this field can be used by the merchant for the order number, invoice identifier or any other reference string. --> <!--STATUS_URL:--><input name="STATUS_URL" type="hidden" value="https://api.epay.com/pay_result.jsp" size="40" /> <!-- Determines the URL to which the Epay payment server feeds back payment status; supports HTTP and HTTPS.”https://www.shop.com/orderpayment.asp”--> <!--PAYMENT_URL:--><input name="PAYMENT_URL" type="hidden" value="https://api.epay.com/pay_result1.jsp" size="40" /> <!--Determines the URL of the merchant to go after a transaction has succeeded on Epay server; supports HTTP and HTTPS. --> <!--PAYMENT_URL_METHOD:--><input name="PAYMENT_URL_METHOD" type="hidden" value="post" size="40" /><!--post get --> <!--NOPAYMENT_URL:--><input name="NOPAYMENT_URL" type="hidden" value="https://api.epay.com/pay_result1.jsp" size="40" /><!--Determines the URL of the merchant to go after a transaction fails on the Epay payment server; supports HTTP and HTTPS. --> <!--NOPAYMENT_URL_METHOD:--><input name="NOPAYMENT_URL_METHOD" type="hidden" value="post" size="40" /><!--post get --> SUGGESTED MEMO:<input name="SUGGESTED_MEMO" type="text" value="" size="40" /><br><br> <!--If this input field is present, the Memo area of the Epay payment form is pre-filled in with its value.. The customer is free to edit the memo, so its content should not be relied upon to stay unchanged. --> <!--INTERFACE LANGUAGE:--><input name="INTERFACE_LANGUAGE" type="hidden" value="en_US" size="40" /> <!-- Page international code en_US - U.S. English zh_CN - 中文--> <!--CHARACTER ENCODING:--><input name="CHARACTER_ENCODING" type="hidden" value="UTF-8" size="40" /><!-- GBK,UTF-8 --> <input type="submit" name="button" class="btnreg" id="button" value="pay epay"></span> </form>

Comments