CONNECT PAYMENT MODES


Please note Connect does not prompt the customer to enter an amount. The total amount will need to be calculated on your web site before its submitted to LinkPoint.

FULLPAY MODE
If you want LinkPoint to collect all of the customer's information you will need to use FULLPAY mode. Click on the button below to see the Connect payment form.

<form action="https://www.linkpointcentral.com/lpc/servlet/lppay" method="post">
<input type="hidden" name="mode" value="fullpay">
<input type="hidden" name="storename" value="123456">
<input type="hidden" name="chargetotal" value="2.00">
<input type="submit" value="Continue">
</form>

PAYPLUS MODE
If you collect any customer information on your web site you should use PAYPLUS mode. Click on the button below to see the Connect payment form.

<form action="https://www.linkpointcentral.com/lpc/servlet/lppay" method="post">
<input type="hidden" name="mode" value="payplus">
<input type="hidden" name="storename" value="123456">
<input type="hidden" name="chargetotal" value="2.00">
<input type="hidden" name="baddr1" value="1002 street">
<input type="hidden" name="bcity" value="Los Angeles">
<input type="hidden" name="bstate" value="CA">
<input type="hidden" name="bzip" value="91002">
<input type="hidden" name="bcountry" value="US">
<input type="submit" value="Continue">
</form>

PAYONLY MODE
The PAYONLY mode prompts for the least amount of information. The only information required from the cusomter is the billing address and zip code. Click on the button below to see the Connect payment form.

<form action="https://www.linkpointcentral.com/lpc/servlet/lppay" method="post">
<input type="hidden" name="mode" value="payonly">
<input type="hidden" name="storename" value="123456">
<input type="hidden" name="chargetotal" value="2.00">
<input type="hidden" name="baddr1" value="1002 street">
<input type="hidden" name="bzip" value="91002">
<input type="submit" value="Continue">
</form>