Preapproval API
PayHere Preapproval API allows you to get your customers preapproved for Automated Payments. It's a simple HTML form based POST API to redirect your customer to PayHere Payment Gateway to securely preapprove the future payments.
Once the preapproval is processed, it notifies your given URL (notify_url
) about the preapproval status & the encrypted token for the customer's card by a server callback. You can fetch that encrypted token from the payment notification & store it in your database securely to programatically charge your customer later at anytime any amount on demand via PayHere Charging API.
Prerequisites
You need the following things ready to integrate your website with PayHere Preapproval API.
- Merchant ID
- You can find your Merchant ID from Side Menu > Integrations of your PayHere Account.
- Merchant Secret
- You can generate a Merchant Secret for your domain/app by following below steps.
- Go to Side Menu > Integrations section of your PayHere Account
- Click 'Add Domain/App' > Enter your top level domain or App package name > Click 'Request to Allow'
- Wait for the approval for your domain/app (This will take up to 24 hours)
- Copy the Merchant Secret shown in front of your domain/app
- You can generate a Merchant Secret for your domain/app by following below steps.
Attention: Please note that Merchant ID is unique to your PayHere account, but Merchant Secret is specific to your integrating domain/app. Therefore, you need to add your new domains/apps & get a new Merchant Secret every time you're integrating PayHere on a new domain/app.
Integration
You need to complete the following 3 steps in order to fully integrate your website with PayHere Preapproval API.
1. Redirecting Customer to PayHere Payment Gateway
Regardless of your scripting language, you can simply use an HTML Form to submit the below POST params to PayHere Payment Gateway. When the form is submitted, your customer will be securely redirected to the PayHere Payment Gateway & the customer can then enter the credentials (Card No / CVV) & securely process the preapproval there.
Action URL
Live - https://www.payhere.lk/pay/preapprove
Sandbox - https://sandbox.payhere.lk/pay/preapprove
Required POST Parameters
merchant_id
- PayHere Merchant IDreturn_url
- URL to redirect users when successcancel_url
- URL to redirect users when cancellednotify_url
- URL to callback the status of the payment (Needs to be a URL accessible on a public IP/domain)first_name
- Customer’s First Namelast_name
- Customer’s Last Nameemail
- Customer’s Emailphone
- Customer’s Phone Noaddress
- Customer’s Address Line1 + Line2city
- Customer’s Citycountry
- Customer’s Countryorder_id
- Order ID generated by the merchantitems
- Item title or Order numbercurrency
- Currency Code (LKR/USD)hash
- Generated hash value as mentioned below (*Required from 2023-01-16)
Generating 'hash' Value
You can generate the hash
value using the merchant_id
, order_id
, amount
, currency
and the merchant_secret
.
hash = to_upper_case(md5(merchant_id + order_id + amount + currency + to_upper_case(md5(merchant_secret))))
PHP Code sample for generating hash
value:
$hash = strtoupper(
md5(
$merchant_id .
$order_id .
number_format($amount, 2, '.', '') .
$currency .
strtoupper(md5($merchant_secret))
)
);
Attention:
- Please note that the
hash
parameter should not be generated in client-side since it will expose yourmerchant_secret
. - If you are passing the optional 'amount' parameter, use that value when generating the
$hash
. - Otherwise, the
$amount
should be10.00
for the 'LKR' currency, or1.01
for all other currencies.
Optional POST Parameters
amount
- Payment amount which need to capture as part of preapproval. This will process as a payment in addition to preapproval.platform
- Referring Platformcustom_1
- Custom param 1 set by merchantcustom_2
- Custom param 2 set by merchant
Code Sample
<html>
<body>
<form method="post" action="https://sandbox.payhere.lk/pay/preapprove">
<input type="hidden" name="merchant_id" value="121XXXX"> <!-- Replace your Merchant ID -->
<input type="hidden" name="return_url" value="http://sample.com/return">
<input type="hidden" name="cancel_url" value="http://sample.com/cancel">
<input type="hidden" name="notify_url" value="http://sample.com/notify">
<input type="text" name="order_id" value="Preapproval12345">
<input type="text" name="items" value="MyTaxi Hires"><br>
<input type="text" name="currency" value="LKR">
<br><br>Customer Details<br>
<input type="text" name="first_name" value="Saman">
<input type="text" name="last_name" value="Perera"><br>
<input type="text" name="email" value="[email protected]">
<input type="text" name="phone" value="0771234567"><br>
<input type="text" name="address" value="No.1, Galle Road">
<input type="text" name="city" value="Colombo">
<input type="hidden" name="country" value="Sri Lanka">
<input type="hidden" name="hash" value="098F6BCD4621D373CADE4E832627B4F6"> <!-- Replace with generated hash -->
<input type="submit" value="Preapprove">
</form>
</body>
</html>
2. Listening to Preapproval Notification
As soon as the preapproval is processed, PayHere notifies the preapproval status to the notify_url
you posted to the Preapproval API as a server callback & redirects the customer back to your website to the return_url
. Preapproval notification will contain the following data as POST params, so you need to host a script on your notify_url
to fetch the following POST params & update your database accordingly.
POST params
merchant_id
- PayHere Merchant ID of the merchantorder_id
- Order ID sent by Merchant to Preapproval pagepayment_id
- Unique Payment ID generated by PayHere for the preapprovalpayhere_amount
- Total Amount of the paymentpayhere_currency
- Currency code of the payment (LKR/USD)status_code
- Payment status code (2
,0
,-1
,-2
)md5sig
- Encrypted signature to verify the paymentstatus_message
- Message received from payment gateway which the customer tried to paycustomer_token
- Encrypted token for customer's cardcustom_1
- Custom param 1 sent by merchant to Checkout pagecustom_2
- Custom param 2 sent by merchant to Checkout pagemethod
- Payment method selected by the customer. (VISA
,MASTER
)card_holder_name
- Card Holder Namecard_no
- Masked card number (Ex:************4564
)card_expiry
- Card expiry in format MMYY (Ex:0122
)
Payment Status Codes
2
- success0
- pending-1
- canceled-2
- failed
Attention:
- You cannot test the preapproval notification by print/echo methods since
notify_url
never loads to the browser as it's a server callback. You can only test it by updating your database upon fetching the notification. - You cannot test the preapproval notification on localhost. You need to submit a publically accessible IP or domain based URL as your
notify_url
for PayHere to directly notify your server. - No payment status parameters are passed to the
return_url
when redirecting the customer back to your website. You need to update your database upon fetching payment status by your script onnotify_url
& then show the preapproval status to your customer in the page onreturn_url
by fetching the status from your database. - The request parameters are encoded in the
'application/x-www-form-urlencoded'
format, not'application/json'
.
3. Verifying the Preapproval Notification
It is critical to verify the Preapproval Notification before taking any actions on the preapproval response. You can do the verification using the md5sig
checksum parameter that is generated & sent by PayHere along with the preapproval status params according to following logic.
md5sig = strtoupper(
md5 (
merchant_id +
order_id +
payhere_amount +
payhere_currency +
status_code +
strtoupper(md5(merchant_secret))
)
)
Once you receive the preapproval status parameters from PayHere, you can locally generate this checksum using the merchant_id
, order_id
, payhere_amount
, payhere_currency
& status_code
sent by the preapproval notification and the merchant_secret
you have locally. Your locally generated checksum should be equal to the md5sig
sent by PayHere if the preapproval notification is valid.
Code Sample (PHP)
You can host this script at your notify_url
.
<?php
$merchant_id = $_POST['merchant_id'];
$order_id = $_POST['order_id'];
$payhere_amount = $_POST['payhere_amount'];
$payhere_currency = $_POST['payhere_currency'];
$status_code = $_POST['status_code'];
$md5sig = $_POST['md5sig'];
$status_message = $_POST['status_message'];
$customer_token = $_POST['customer_token'];
$merchant_secret = 'XXXXXXXXXXXXX'; // Replace with your Merchant Secret
$local_md5sig = strtoupper(
md5(
$merchant_id .
$order_id .
$payhere_amount .
$payhere_currency .
$status_code .
strtoupper(md5($merchant_secret))
)
);
if (($local_md5sig === $md5sig) AND ($status_code == 2) ){
//TODO: Store the encrypted token ($customer_token) securely in your database against your customer
}
?>
Attention:
- Please make sure to consider the preapproval as successful only after the verfification, as it ensures that the payment notification received to your
notify_url
was genuinely initiated by PayHere, not by any other party. - If you do not implement this verification properly, there's a security risk of a third party sending a manipulated payment notification to your
notify_url
, falsly notifing that the preapproval is successful.