NEFT/RTGS Integration
Integrate TPV through NEFT/RTGS using the procedure described in this section.
Step 1: List the Account Numbers
Collect or prepare a list of account numbers that must be posted to PayU for TPV at step 2.
Step 2: Post the parameters to PayU
With the following additional parameters, make the transaction request with the customerβs bank account number to the PayU using the Collect Payment (_payment) API. For more information, refer to Collect Payment API - Merchant Hosted Checkiout.
Environment
Test Environment | https://test.payu.in/_payment |
Production Environment | https://secure.payu.in/_payment |
Request parameters
Parameter | Description | Example |
---|---|---|
pg | It defines the payment category for which you wish to perform TPV. For Net Banking, pg= βNEFTRTGS. | NEFTRTGS |
bankcode | The bankcode for the NEFT/RTGS transaction. For more information, refer to Bank Codes for TPV. This parameter defines the bankcode for NEFT/RTGS. EFTAXTPV must be used as bankcode for NEFT/RTGS. | EFTAXTPV |
beneficiarydetail | This is a JSON format text and there should be key named beneficiaryAccountNumber with account number as value and ifscCode with customer IFSC code as value. | {"beneficiaryAccountNumber":"6612262***5|323132312***3123", "ifscCode":"KKBK0006749|HDFC000231|SBIN213213213"} |
api_version | The api_version β6β must be passed fro this parameter. | 6 |
Checksum Logic for Hash
The following hash logic must be used for the parameters posted:
beneficiarydetail parameter in Hashing:
TheΒ beneficiarydetailΒ parameter value will be at last or the last value to be appended.
key|txnid|amount|productinfo|firstname|email|udf1|udf2|udf3|udf4|udf5||||||beneficiarydetail|SALT
Notes:
- For NEFT/RTGS TPV, merchant should always send both customer account no and customer IFSC Code in Request.
- For NEFT/RTGS TPV, the flow will work for txn_s2s_flow = 1 or txn_s2s_flow = 4 as is. For txn_s2s_flow = 1, the condition is payus2s flag needs to be enabled for that merchant
Optional configuration
PayU provides an optional Back to Merchant button on the payment challan of a NEFT/RTGS payment. This button enables your customer to go back to the merchant portal once the transaction is done.
Sample challan of a NEFT/RTGS transaction
Sample request
curl -X POST "https://test.payu.in/_payment
-H "accept: application/json" -H "Content-Type: application/x-www-form-urlencoded" -d
"key=JP***g&txnid=blMwz0rgz9udtp&amount=10.00&firstname=Ashish&[email protected]&phone=&productinfo=iPhone&pg=NEFTRTGS&bankcode=EFTAXTPV&surl=https://apiplayground-response.herokuapp.com/&furl=https://apiplayground-response.herokuapp.com/&api_version=6&beneficiarydetail='{\"beneficiaryAccountNumber\":\"002001600674\",\"ifscCode\":\"KTKB0000046\"}&hash="
Step 3: Check the response from PayU
Hash validation logic for payment response (Reverse Hashing)
While sending the response, PayU takes the exact same parameters that were sent in the request (in reverse order) to calculate the hash and returns it to you. You must verify the hash and then mark a transaction as a success or failure. This is to make sure the transaction has not tampered within the response.
The order of the parameters is similar to the following code block:
sha512(SALT|beneficiarydetail|status||||||udf3|udf2|udf1|email|firstname|productinfo|amount|txnid|key)
Response parameters
The following table describes the parameters in the response from PayU:
Param Name | Description |
---|---|
mihpayid | It is a unique reference number created for each transaction at PayUβs end. You must note this transaction ID as this will be used as a reference for all the future actions on this transaction like Inquiry or Refund. |
merchantid | It is the unique ID of the merchant. |
txnid | This parameter would contain the transaction ID value posted by the merchant during the transaction request. |
transaction_fee | The transaction fee for the TPV transaction. For Net Banking, INR 10 is charged by default. |
discount | The discount amount given by bank on the transaction fee (if any). |
amount | The net amount after discount (if any) is displayed in this parameter. For Net Banking, INR 10 is charged by default. |
paymentgatewayid | The payment gateway identifier for the bank sending the response. |
pg | The payment gateway used for the transaction. In case of NEFT/RTGS, it is βNEFTRTGS.β |
status | This parameter gives the status of the transaction as either success, failed or pending.β¨Possible values:Β success, failure, pendingβ¨If the value of the βstatusβ parameter is βsuccessβ, the transaction is successful.β¨If the value of βstatusβ is βfailureβ or βpendingβ, must be treated as a failed transaction only |
PG_Type | The bankcode (as in Merchant Hosted Checkout integration) of the bank is returned in the parameter. |
key | This parameter contains the merchant key for the merchantβs account at PayU. It would be the same as the key used while the transaction request is being posted from the merchantβs end to PayU. |
riskactionStr | This parameter contains risk action (if any) taken on the account holder. |
addedon | The transaction timestamp is returned in this parameter. |
Store mihpayid and txnid parameter in response:
PayU recommends you to make provisions to store the mihpayid and txnid parameter values (in the response) in your server as proof that TPV has been completed for a customer.
Note on Response:
For security reasons, the sample response or URL is not included here.
Payment verification:
PayU recommends you. to verify the transaction details using the Verification Payment API. For more information, For API reference, refer to Verify Payment API.
Updated 4 months ago