Try Out


STEP2 Initiate Payment Session(Window)

The Certificate will be issued per Merchant by KCP and requires to be managed in order to use the payment service.

CHECK Payment Code

Copy the code below and input in an HTML file to try out calling the payment window.

<!-- Example of Calling PC Payment Window function -->
<html>
<head>
   <meta http-equiv="Content-Type" content="text/html; charset=euc-kr"/>
   <script type="text/javascript" src="https://testpay.kcp.co.kr/plugin/payplus_web.jsp"></script>

<script type="text/javascript">
   /* Execute Standard Web */
   function jsf__pay( form )
   {
      try
      {
         KCP_Pay_Execute( form );
      }
      catch (e)
      {
         
      }
   }

</script>
</head>
<body onload="jsf__pay( document.order_info )">
   <form name="order_info">
         <input type="hidden" name="ordr_idxx" value="TEST1234567890"/>
         <input type="hidden" name="good_name" value="testgoods"/>
         <input type="hidden" name="good_mny" value="1004"/>
         <input type="hidden" name="pay_method" value="100000000000"/> <!-- Payment Method(Credit Card) -->
         <input type="hidden" name="site_cd" value="T0000"/>
         <input type="hidden" name="site_key" value="3grptw1.zW0GSo4PQdaGvsF__"/>
   </form>
</body>
</html>