Field Name | Data Type | Size | M/O | Description & Remarks | |
RespCode | String | 2 | M | Response code | |
RespMessage | String | 500 | M | Response message | |
Api | String | 30 | M | API name | |
MerchantNo | String | 16 | M | Merchant no | |
RequestId | String | 50 | M | Request Id to identify request from merchant | |
CustId | String | 50 | M | Merchant’s Customer id. | |
OrderId | String | 50 | M | Order Id | |
CardTokenId | String | 20 | M | Card Token Id | |
TrxnId | String | 20 | C | Unique transaction Id | |
PymtStatus | String | 1 | C | Payment Status. Refer 2.4.2 Payment Status Code. | |
Signature
| String | – | M | Calculated hash by concatenating all the values of the fields and follow the list order. | |
Example
<% RespCode = Request.Form(“RespCode”) RespMessage = Request.Form(“RespMessage”) Api = Request.Form(“Api”) MerchantNo = Request.Form(“MerchantNo”) RequestId = Request.Form(“RequestId “) CustId = Request.Form(“CustId”) OrderId = Request.Form(“OrderId”) CardTokenId = Request.Form(“CardTokenId”) TrxnId = Request.Form(“TrxnId”) PymtStatus = Request.Form(“PymtStatus”) Signature = Request.Form(“Signature”) %> <Add your programming code here>
|