Epassporte Payment Gateway Integration

April 10, 2009 at 2:24 am | In Payment Gateway | Leave a Comment
Tags: , , , ,

Epassporte Payment Gateway
epassporte

Sample code for HTML pages:

For Epassporte Integration Two Field Necessary That Provided By Epassporte To The Mearchant

acct_num

pi_code

pi_code is generated according to account number other wise you face xml apt error

<FORM ACTION=”https://www.epassporte.com/secure/eppurchase.cgi” TARGET=”NEW” METHOD=”POST”><BR>
<INPUT TYPE=”HIDDEN” NAME=”acct_num” VALUE=”[account number here]“><BR>
<INPUT TYPE=”HIDDEN” NAME=”pi_code” VALUE=”[product code here]“><BR>
<INPUT TYPE=”HIDDEN” NAME=”gohere” VALUE=”CART”><BR>
<INPUT TYPE=”HIDDEN” NAME=”dothis” VALUE=”VIEW_ITEMS”><BR>
<INPUT TYPE=”SUBMIT” VALUE=”View Cart Items” ALT=”View Cart Items”><BR>
</FORM>

Sample code for HTML pages (with quantity):

<FORM ACTION=”https://www.epassporte.com/secure/eppurchase.cgi” TARGET=”NEW” METHOD=”POST”><BR>
<INPUT TYPE=”HIDDEN” NAME=”acct_num” VALUE=”[account number here]“><BR>
<INPUT TYPE=”HIDDEN” NAME=”pi_code” VALUE=”[product code here]“><BR>
<INPUT TYPE=”HIDDEN” NAME=”amount” VALUE=”[product amount here]“><BR>
<INPUT TYPE=”HIDDEN” NAME=”product_name” VALUE=”[product desc here]“><BR>
<INPUT TYPE=”HIDDEN” NAME=”quantity” VALUE=”[product quantity here]“><BR>
<INPUT TYPE=”HIDDEN” NAME=”gohere” VALUE=”CART”><BR>
<INPUT TYPE=”HIDDEN” NAME=”dothis” VALUE=”ADD_ITEM”><BR>
<INPUT TYPE=”IMAGE” SRC=”epassporte.gif” NAME=”SUBMIT” ALT=”Pay By ePassporte”>
</FORM>

Sample code for link:

https://www.epassporte.com/secure/eppurchase.cgi?acct_num=[account number here]&pi_code=[product code here]&amount=[product amount here]&product_name=[product description here]&gohere=CART&dothis=ADD_ITEM

Money Booker Payment Integration With Api

April 10, 2009 at 2:19 am | In Payment Gateway | Leave a Comment
Tags: , , , ,

Money Booker Payment Basic Integration Api

Basic integration
For basic integration simply use this HTML and customise the BLUE fields to your own needs:

<form action=”https://www.moneybookers.com/app/payment.pl” method=”post” target=”_blank”>
<input type=”hidden” name=”pay_to_email” value=”ENTER_YOUR_USER_EMAIL@MERCHANT.COM“>
<input type=”hidden” name=”status_url” value=”EMAIL_TO_RECEIVE_PAYMENT_NOTIFICATION@MERCHANT.COM“>
<input type=”hidden” name=”language” value=”EN“>
<input type=”hidden” name=”amount” value=”ENTER_PAYMENT_AMOUNT_(EXAMPLE:39.60)“>
<input type=”hidden” name=”currency” value=”ENTER_3_DIGIT_CURRRENCY_CODE_(EXAMPLE:EUR)“>
<input type=”hidden” name=”detail1_description” value=”SPECIFY_WHAT_FOLLOWS_(EXAMPLE:Book:)“>
<input type=”hidden” name=”detail1_text” value=”PRODUCT_DESCRIPTION_(EXAMPLE:Romeo and Juliet (W. Shakespeare))“>
<input type=”submit” value=”Pay!”>
</form>

N.B.:

With this basic integration you are required to manually check whether the payment was processed successfully by viewing your account history.Although you will receive email notification upon each payment to the email address which you have provided as “status_url”, you will HAVE TO check your history, as it is not secure to rely on emails.

Money Booker Payment Gateway Advance Integration

<form action=”https://www.moneybookers.com/app/payment.pl” target=”_blank”>
<input type=”hidden” name=”pay_to_email” value=”lalit241@gmail.com”>
<input type=”hidden” name=”return_url_target” value=”1″>
<input type=”hidden” name=”cancel_url_target” value=”1″>
<input type=”hidden” name=”dynamic_descriptor” value=”Descriptor”>
<input type=”hidden” name=”language” value=”EN”>
<input type=”hidden” name=”confirmation_note” value=”Samplemerchant wishes you pleasure reading your new book!”>
<input type=”hidden” name=”merchant_fields” value=”field1″>
<input type=”hidden” name=”title” value=”Mr”>
<input type=”hidden” name=”firstname” value=”John”>
<input type=”hidden” name=”lastname” value=”Payer”>
<input type=”hidden” name=”address” value=”11 Payerstr St”>
<input type=”hidden” name=”address2″ value=”Payertown”>
<input type=”hidden” name=”phone_number” value=”0207123456″>
<input type=”hidden” name=”postal_code” value=”EC45MQ”>
<input type=”hidden” name=”city” value=”Payertown”>
<input type=”hidden” name=”state” value=”Central London”>
<input type=”hidden” name=”country” value=”GBR”>
<input type=”hidden” name=”amount” value=”39.60″>
<input type=”hidden” name=”currency” value=”EUR”>
<input type=”hidden” name=”amount2_description” value=”Product Price:”>
<input type=”hidden” name=”amount2″ value=”29.90″>
<input type=”hidden” name=”amount3_description” value=”Handling Fees:”>
<input type=”hidden” name=”amount3″ value=”3.10″>
<input type=”hidden” name=”amount4_description” value=”VAT (20%):”>
<input type=”hidden” name=”amount4″ value=”6.60″>
<input type=”hidden” name=”detail1_description” value=”Product ID:”>
<input type=”hidden” name=”detail1_text” value=”4509334″>
<input type=”hidden” name=”detail2_description” value=”Description:”>
<input type=”hidden” name=”detail2_text” value=”Romeo and Juliet (W. Shakespeare)”>
<input type=”hidden” name=”detail3_description” value=”Seller ID:”>
<input type=”hidden” name=”detail3_text” value=”123456″>
<input type=”hidden” name=”detail4_description” value=”Special Conditions:”>
<input type=”hidden” name=”detail4_text” value=”5-6 days for delivery”>
<input type=”hidden” name=”rec_period” value=”1″>
<input type=”hidden” name=”rec_grace_period” value=”1″>
<input type=”hidden” name=”rec_cycle” value=”day”>
<input type=”hidden” name=”ondemand_max_currency” value=”EUR”>
<input type=”hidden” name=”” value=”▼ “>
<input type=”hidden” name=”” value=”▲ “>
<input type=”submit” name=”Pay” value=”Pay”>
</form>

Blog at WordPress.com. | Theme: Pool by Borja Fernandez.
Entries and comments feeds.