Purpose

PayMate API allows any business to integrate with PayMate to process their business payments seamlessly over a RESTful HTTP interface. The API will let businesses add their vendors and customers, make vendor payments, collect payments from customers, track payments and much more. PayMate API will help you streamline your business payments processes right from within your existing systems.

Requirement

Before any business can start using the PayMate API platform to process their business payments, the business needs to
  • Signup ​on PayMate
  • Complete KYC Verification
  • Upgrade to any one of the subscription plans which provides API access. ​Click here​ to check out the pricing plans
  • Whitelist the domain name or IP address from where the API will be accessed
Once the business upgrades to a paid plan the API settings will be accessible under ​Account Settings - API Settings​. The API Settings will have details about the authentication and encryption keys to be used when accessing the APIs. The authentication keys consist of
  • 32 digit alphanumeric MerchantIdentification
  • 32 digit alphanumeric TerminalIdentification
  • 10 digit alphanumeric XpressID
  • Email address which was used during signup
  • AES KEY & IV for encrypting/decrypting JSON data in API request/response parameters.
Note​ - The AES encryption key and IV can be changed anytime due to security reasons.

API Development Environment

For quick and seamless API integration every registered business on PayMate will have access to the Development environment of the API platform. The Development environment will help businesses to develop, integrate and test the existing and new API methods before moving to production.
The Development environment is a simulated environment i.e all the API methods have predefined request parameters and response parameters. You will not be able to add/delete any records using the API methods on the Development environment. Rest assured the API methods on the Development environment works exactly the same way as on a Production environment.
Here are the details for the Development environment.
API URL​:https://uat.paymate.co.in/PayMateSite/PayMateService/PMXClients.svc/PMXClients/​
< method name >

Sr.No Parameter Data Type Key Value Max Length Special Character
1 MerchantIdentification Alphanumeric 583F3A31-E0A8-4 281-AADA-77ED5 1ADB9F9 32 -
2 TerminalIdentification Alphanumeric D05D0DFF-3829-4 7CE-9849-8C0DC8 492324 32 -
3 XpressID Alphanumeric DBRV000001 10 -
4 Email Alphanumeric paymateapi@pay mate.co.in 240 @ . - _
Encryption Keys
AES Key​: C1845346D7562D7DC15695B63DD49A63
AES IV​: 63D11193F56FE438

API Protocol

The API accepts data in JSON format over a POST request and sends response in JSON format. The JSON data in request and response will be encrypted with AES 256 bit encryption logic using the keys and IV provided. API requests will be authenticated with the help of the three authentication keys which needs to be passed along in the API Headers.

Add Contact

Method name - AddContact()

Request parameters

Description: Use this method to add your vendors and customers as Contacts on your PayMate account. If adding a vendor, please provide the vendor's account details also. When adding a customer provide an email address for the customer which will be used for communication.

Sr.No Parameter Required Data Type Max Length Special Character Description
1 CompanyName Yes Alphanumeric 60 ,.@!' - Contact's Company Name
2 FirstName Yes Alphabet 30 Contact's first name
3 LastName Yes Alphabet 30 Contact's last name
4 NickName Optional Alphabet 10 Contact's nick Name
5 EmailId Yes Alphanumeric 200 Contact Company's Email address
6 MobileNo Optional Numeric 10 Contact Company's Mobile no.
7 CompanyAddress Optional Alphanumeric 300 Contact Company's Address
8 ReferenceCode Optional Alphanumeric 20 Contact Company's Reference Code
9 AccountNo Optional Alphanumeric 30 Contact Company's Account no
10 IFSCode Optional Alphanumeric 11 Contact Company's Account IFSC Code
11 GSTIN Optional Alphanumeric 15 Contact Company's GSTN

Response parameters

Sr.No Parameter Required Data Type Max Length Special Character Description
1 XpressID Yes Alphanumeric 20 Sent during Request
2 ErrorCode Yes Numeric 3 if strStatus=Success then 000 else specific error code will be provided
3 ErrorDescription Yes Text 100 Error Description
4 Response Yes Text - Array of response data. In case of any error this parameter will be empty
Add Contact
{  
   "CompanyName":"Watson Watches Co",
   "FirstName":"John",
   "LastName":"Watson",
   "NickName":"John",
   "EmailId":"watsonwatches@example.com",
   "MobileNo":"9898989898",
   "CompanyAddress":"221 Baker Street",
   "ReferenceCode":"V001",
   "AccountNo":"0000000123456789",
   "IFSCode":"CITI0100000",
   "GSTIN":"27ABCDE1234F1Z0"
}
                       
{  
   "XpressID":"DBRV000001",
   "ErrorCode":"000",
   "ErrorDescription":"Contact saved successfully.",
   "Response":{  
      "VirtualAccountNo":"PAYMYS123456",
      "VANIFSC":"CITI0100000",
      "ContactXpressID":"TEMH000012"
    }                                  
 }

Get Contact List

Method name - GetContactsList()

Request parameters

Description: Use this method to get all the contacts added by you in your PayMate account. To get a list of contacts added between a particular date range, provide FromDate & ToDate . To get a details of a single contact provide CompanyName or ReferenceCode.

Sr.No Parameter Required Data Type Max Length Special Character Description
1 FromDate Optional Date 10 / DD/MM/YYYY
2 ToDate Optional Date 10 / DD/MM/YYYY
3 CompanyName Optional AlphaNumeric 30 ,.@!'- Registered Company Name
4 ReferenceCode Optional AlphaNumeric 20 Registered Company's ReferenceCode

Response parameters

Sr.No Parameter Required Data Type Max Length Special Character Description
1 XpressID Yes Alphanumeric 20 Sent during Request
2 ErrorCode Yes Numeric 3 if strStatus=Success then 000 else specific error code will be provided
3 ErrorDescription Yes Text 100 Error Description
4 Response Yes - Array of response data. In case of any error this parameter will be empty
Get Contact List
Fetching list using CompanyName
{  
   "CompanyName":"Watson Watches Co ",
   "ReferenceCode":"",
   "FromDate":"",
   "ToDate":""
}

Fetching list using ReferenceCode
{  
   "CompanyName":"",
   "ReferenceCode":"V001",
   "FromDate":"",
   "ToDate":""
}
 

Fetching list using Date Range
{  
   "CompanyName":"",
   "ReferenceCode":"",
   "FromDate":"01/01/2017 ",
   "ToDate":"31/12/2017"
}
{  
"XpressID":"DBRV000001",
"ErrorCode":"000",
"ErrorDescription":"Success",
"Response":[  
{  
 "CompanyName":"Watson Watches Co",
 "FirstName":"John",
 "LastName":"Watson",
 "NickName":"John",
 "EmailId":"watsonwatches@example.com",
 "MobileNo":"9898989898",
 "CompanyAddress":"221 Baker Street ",
 "ReferenceCode":"V001",
 "AccountNo":"0000000123456789",
 "IFSCode":"CITI0100000",
 "VirtualAccountNo":"PAYMYS123456",
 "VANIFSC":"CITI0100000",
 "ContactXpressID":"TEMH000012"
 }
],
}

Book Payment

Method name - BookPayment()

Description: Create a make payment request for vendors you have not added on “PayMate” by using this method. The method returns the Transaction Reference Number on successful payment request creation. This method will not add the vendor details passed in the API as contacts on the “PayMate” platform.
Note - This API allows make payment request creation only with Xpress Account as Payment Mode

Request parameters

Sr.No Parameter Required Data Type Max Length Special Character Description
1 CompanyName Yes Alphabet 60 ,.@!'- Company name of the beneficiary
2 ReceiverEmailId No Alphanumeric 200 Email Id of the beneficiary.
3 ReceiverMobileNo No Numeric 10 Mobile no of the beneficiary
4 AccountNo Yes Alphanumeric 30 Account no of the beneficiary
5 IFSCode Yes Alphanumeric 11 IFSC Code of the beneficiary account no
6 OrderId Yes Alphanumeric 20 Business generated OrderID
7 Amount Yes Decimal 9,2 Amount to be paid
8 PaymentType Yes Alphanumeric 10 For IMPS transaction provide "Instant", for NEFT/RTGS provide "Normal"
9 PaymentFrom Yes Alphanumeric 20 Payment mode to be used for makeing payments. Options will be XpressAccount, CreditCard, DebitCard or NetBanking
10 Remarks No Alphanumeric 200 Remarks for the transaction
11 ReturnURL No Alphanumeric 200 :,// For payments using Credit Card, Debit Card or Net Banking provide a Return URL to redirect the user after successful transaction

Response parameters

Sr.No Parameter Required Data Type Max Length Special Character Description
1 XpressID Yes Alphanumeric 20 Sent during Request
2 ErrorCode Yes Numeric 3 if strStatus=Success then 000 else specific error code will be provided
3 ErrorDescription Yes Text 100 if strErrorCode=000 then Success else Specific Error Description
4 Response Yes Text Array of response data. In case of any error this parameter will be empty
Book Payment
{  
"CompanyName":"Lock N Key Co",
"ReceiverEmailId":"locknkey@example.com",
"ReceiverMobileNo":"9191919191",
"AccountNo":"0000000987654321",
"IFSCode":"CITI0100000",
"OrderId":"WAT1234",
"Amount":"1000000",
"PaymentType":"Normal",
"PaymentFrom":"XpressAccount",
"Remarks":"Invoice #WAT1234 payment"
}

                       
{ 
   "XpressID":"DBRV000001",
   "ErrorCode":"000",
   "ErrorDescription":"Success",
   "ResponseText":{  
      "TransactionRefNo":"816618019204",
      "OrderID":"WAT1234"
   }

}

Book Payments by XpressID

Method name - BookPaymentByXpressID()

Description:: This method is used to book make payment request to vendors which you have registered on “PayMate”. The method returns the Transaction Reference Number on successful payment request creation. Note - This API allows make payment request creation only with Xpress Account as Payment Mode

Request parameters

Sr.No Parameter Required Data Type Max Length Special Character Description
1 ClientXpressId Yes Alphanumeric 10 Registered Contact’s XpressID. A unique XpressID is generated by PayMate for each and every registered contact.
2 OrderID Yes Alphanumeric 10 Business generated OrderID
3 Amount Yes Decimal 9,2 Amount to be paid
4 Remarks Option Alphanumeric 200 Remarks for the transaction
5 PaymentType Yes Alphanumeric 30 For IMPS transaction provide "Instant", for NEFT/RTGS provide "Normal"
6 PayFrom Yes Alphanumeric 30 Payment mode to be used for makeing payments. Options will be XpressAccount, CreditCard, DebitCard or NetBanking
7 ReturnURL Optional Text :,// For payments using Credit Card, Debit Card or Net Banking provide a Return URL to redirect the user after successful transaction

Response parameters

Sr.No Parameter Required Data Type Max Length Special Character Description
1 XpressID Yes Alphanumeric 20 Sent during Request
2 ErrorCode Yes Numeric 3 if strStatus=Success then 000 else specific error code will be provided
3 ErrorDescription Yes Text 100 if strErrorCode=000 then Success else Specific Error Description
4 Response Yes Text Array of response data. In case of any error this parameter will be empty
Book Payments by XpressID
{  
   "ClientXpressId":"TEMH000012",
   "OrderID":"WAT1235",
   "Amount":"1000000",
   "Remarks":"Invoice #WAT1235 payment"
   "PaymentType":"Normal",
   "PaymentFrom":"XpressAccount"
}
{
   "XpressID":"DBRV000001",
   "ErrorCode":"000",
   "ErrorDescription":"Success",
   "ResponseText":{  
      "TransactionRefNo":"816619019205",
      "OrderID":"WAT1235"
   }
}

Approve Payment

Method name - ApprovePayment()

Description:: Use this method when approving or rejecting a pending payment request. Pass the relevant Order ID of the payment request and approval action to process the approval / rejection of the payment request.
Note - This method can only be used for approving/rejecting a single payment request at a time. When rejecting a payment providing Reason is mandatory

Request parameters

Sr.No Parameter Required Data Type Max Length Special Character Description
1 OrderId Yes Alphanumeric 20 Business OrderID against the booked transaction
2 TransactionRefNo Optional Numeric 12 PayMate Reference no against the booked transaction
3 ApprovalAction Yes Text 30 Approve or Reject
4 Reason Option Alphanumeric 60 You can add reason if you want to reject the transaction.

Response parameters

Sr.No Parameter Required Data Type Max Length Special Character Description
1 XpressID Yes Alphanumeric 20 Sent during Request
2 ErrorCode Yes Numeric 3 if strStatus=Success then 000 else specific error code will be provided
3 ErrorDescription Yes Text 100 if strErrorCode=000 then Success else Specific Error Description
4 Response Yes Text Array of response data. In case of any error this parameter will be empty
Approve Payment
For approving payments
{  
"OrderId":"WAT1234",
"TransactionRefNo":"816618019204",
"AprovalAction":"Approve"
}
 

For rejecting payments
{ 
"OrderId":"WAT1235",
"TransactionRefNo":"816619019205",
"AprovalAction":"Reject",
"Reason":"Incorrect invoice amount"
}
For approving payments
{  
"XpressID":"DBRV000001",
"ErrorCode":"000",
"ErrorDescription":"Success",
"Response":{  
"TransactionStatus":"202",
"TransactionMessage":"Sent to bank",
"BankRefNo":"N234567895434",
"IsBankResponse":true,
"TransactionRefNo":"816618019204",
"OrderID":"WAT1234",
"Amount":"1000000",
"CompanyName":"Lock N Key Co",
"AccountNo":"0000000987654321"
},
}

For rejecting payments
{  
"XpressID":"DBRV000001",
"ErrorCode":"000",
"ErrorDescription":"Success",
"Response":{  
"TransactionStatus":"203",
"TransactionMessage":"Aborted",
"BankRefNo":"NULL",
"IsBankResponse":false,
"TransactionRefNo":"816618019205",
"OrderID":"WAT1235",
"Amount":"1000000",
"CompanyName":"Watson Watches Co",
"AccountNo":"0000000123456789"
},
} 

Get Payment Status

Method name - GetPaymentReport()

Description: Get all the pending payment requests which are awaiting approval or awaiting payment. This method can also be used to fetch pending requests within a specific date range or get status of a specific pending request using OrderID.

Request parameters

Sr.No Parameter Required Data Type Max Length Special Character Description
1 OrderId Yes Alphanumeric 20 Business OrderID against the booked transaction
2 TransactionRefNo Optional Numeric 12 PayMate Reference no against the booked transaction
3 FromDate Optional Date 10 / DD/MM/YYYY
4 ToDate Optional Date 10 / DD/MM/YYYY

Response parameters

Sr.No Parameter Required Data Type Max Length Special Character Description
1 XpressID Yes Alphanumeric 20 Sent during Request
2 ErrorCode Yes Numeric 3 if strStatus=Success then 000 else specific error code will be provided
3 ErrorDescription Yes Text 100 if strErrorCode=000 then Success else Specific Error Description
4 Response Yes Text Array of response data. In case of any error this parameter will be empty
Get Payment Status
{  
   "OrderId":"WAT1234",
   "TransactionRefNo":"",
   "FromDate":"",
   "ToDate":""
}
{  
"XpressID":"DBRV000001",
"ErrorCode":"000",
"ErrorDescription":"Success",
"Response":[  
{  
 "OrderId":"WAT1234",
 "TransactionRefNo":"816618019204",
 "CompanyName":"Lock N Key Co",
 "AccountNo":"0000000987654321",
 "IFSCCode":"CITI01000001",
 "TransactionType":"Xpress Account",
 "PaidAmount":1000000.00,
 "XpressCharge":10.00,
 "GST":1.80,
 "NetAmount":1000010.80,
 "TransactionDate":"24-04-2018 14:45:21",
 "TransactionStatus":"202",
 "TrasnsactionMessage":"Sent to bank",
 "BankRefNo":"P795109156364004",
 "BankSummary":"SENT_TO_BENEFICIARY"
}
 ],
   
}

Get Xpress Account Balance

Method name - XpressAccountBalance()

Description: Use this API to get the current balance in your Xpress Account on “PayMate”.

Response parameters

Sr.No Parameter Required Data Type Max Length Special Character Description
1 XpressID Yes Alphanumeric 20 Sent during Request
2 ErrorCode Yes Numeric 3 if strStatus=Success then 000 else specific error code will be provided
3 ErrorDescription Yes Text 100 if strErrorCode=000 then Success else Specific Error Description
4 Response Yes Text Array of response data. In case of any error this parameter will be empty
Get Xpress Account Balance


                       
{  
   "XpressID":"DBRV000001",
   "ErrorCode":"000",
   "ErrorDescription":"Success",
   "Response":{  
   "XpressBalance":"6000070.20"
              }
}


Vendor Request Payment

Method name - VendorRequestPayment()

Description: This API allows your registered vendors to raise a payment requests to business. The vendor should be registered as a contact on “PayMate” by the business.

Request parameters

Sr.No Parameter Required Data Type Max Length Special Character Description
1 ClientXpressID Yes Alphanumeric 10 Xpress ID of the registered contact
2 OrderID Yes Alphanumeric 20 Business generated OrderID
3 Amount Yes Decimal 9,2 Amount to be paid
4 Remarks No Alphanumeric 200 Remarks for the transaction

Response parameters

Sr.No Parameter Required Data Type Max Length Special Character Description
1 XpressID Yes Alphanumeric 20 Sent during Request
2 ErrorCode Yes Numeric 3 if strStatus=Success then 000 else specific error code will be provided
3 ErrorDescription Yes Text 100 if strErrorCode=000 then Success else Specific Error Description
4 Response Yes Text Array of response data. In case of any error this parameter will be empty
Vendor Request Payment
{  
   "ContactXpressID ":"DBRV000001",
   "OrderID":"WAT1236",
   "Amount":"50000",
   "Remarks":"Please make the payment on time."
}
{  
   "XpressID":"DBRV000001",
   "ErrorCode":"000",
   "ErrorDescription":"Success",
   "Response":{  
   "TransactionRefNo":"811714017155",
   "OrderID":"WAT1236"
  }
}

Request Payment

Method name - RequestPayment()

Description:Use this method to send payment collection request to a customer who is not registered on “PayMate”. Along with sending the payment request to the customer, this API will also add the customer as Contact in your PayMate account. The API returns a Transaction Reference Number on successful request creation.

Request parameters

Sr.No Parameter Required Data Type Max Length Special Character Description
1 OrderID Yes Alphanumeric 20 Business generated OrderID
2 CompanyName Yes Alphanumeric 60 Vendor Company Name
3 ReferenceCode Optional Alphanumeric 10 Code assign to vendor by Business
4 SenderName Yes Alphanumeric 30 Contact Person Name
5 EmailID Yes Alphanumeric 200 Vendor Email address
6 MobileNo Yes Numeric 10 Vendor Mobile Number
7 Amount Yes Decimal 9,2 Transaction Amount
8 Remarks Optional Alphanumeric 200 Remarks for the transaction

Response parameters

Sr.No Parameter Required Data Type Max Length Special Character Description
1 XpressID Yes Alphanumeric 20 Sent during Request
2 ErrorCode Yes Numeric 3 if strStatus=Success then 000 else specific error code will be provided
3 ErrorDescription Yes Text 100 if strErrorCode=000 then Success else Specific Error Description
4 Response Yes Text Array of response data. In case of any error this parameter will be empty
Request Payment
{  
   "CompanyName":"Watson Watches Co",
   "EmailID":"watsonwatches@example.com",
   "FirstName":"John",
   "LastName":"Watson",
   "ReferenceCode":"V001",
   "OrderId":"WAT1237",
   "Amount":"50000",
   "MobileNo":"98123456789",
   "Remarks":"Please make the payment against the invoice INV1234"
}

                       
{  
"XpressID":"DBRV000001",
"ErrorCode":"000",
"ErrorDescription":"Success",
"Response":{  
"TransactionRefNo":"811617017149",
"OrderID":"WAT1237"
}
}

Request Payment by XpressID

Method name - RequestPaymentByXpressID()

Description: Send payment collection requests to your customers whom you have added on “PayMate” by using this method. The API will return a Transaction Reference Number on successful request creation.

Request parameters

Sr.No Parameter Required Data Type Max Length Special Character Description
1 ClientXpressId Yes Alphanumeric 10 “PayMate” issued Xpress ID to the Vendor.
2 OrderID Yes Alphanumeric 20 Business generated OrderID
3 Amount Yes Alphanumeric 30 Transaction Amount
4 Remarks Optional Alphanumeric 200 Remarks for the transaction

Response parameters

Sr.No Parameter Required Data Type Max Length Special Character Description
1 XpressID Yes Alphanumeric 20 Sent during Request
2 ErrorCode Yes Numeric 3 if strStatus=Success then 000 else specific error code will be provided
3 ErrorDescription Yes Text 100 if strErrorCode=000 then Success else Specific Error Description
4 Response Yes Text Array of response data. In case of any error this parameter will be empty
Request Payment by XpressID
{  
   "ClientXpressId":"TEMH000012",
   "OrderID":"WAT1238",
   "Amount":"50000",
   "Remarks":"Please make the payment against the invoice INV1235"
}
{  
   "XpressID":"DBRV000001",
   "ErrorCode":"000",
   "ErrorDescription":"Success",
   "Response":{  
   "TransactionRefNo":"811616017142",
   "OrderID":"WAT1238"
  }
}

Request Payment by XpressID Checkout

Method name - RequestPaymentByXpressID_Checkout()

Description: Generate a unique payment collection link for your Customers. This API will return a unique payment URL in response. Use the link to bind it to a call to action button to take the user to the payment page.

Request parameters

Sr.No Parameter Required Data Type Max Length Special Character Description
1 ClientXpressId Yes Alphanumeric 10 “PayMate” issued Xpress ID for the Contact when added on the platform
2 OrderID Yes Alphanumeric 20 Business generated unique OrderID
3 Amount Yes Alphanumeric 30 Transaction Amount
4 Remarks Optional Alphanumeric 200 Remarks for the transaction
4 ReturnURL Yes URL 200 Callback URL to redirect the user when the transaction is completed

Response parameters

Sr.No Parameter Required Data Type Max Length Special Character Description
1 XpressID Yes Alphanumeric 20 Business ID on PayMate
2 ErrorCode Yes Numeric 3 Gives the relevant code for the request
3 ErrorDescription Yes Text 100 Description of the error code
4 Response Yes Text Array of response data. In case of any error this parameter will be empty
Request Payment by XpressID
{  
   "ClientXpressId":"TEMH000012",
   "OrderID":"WAT1238",
   "Amount":"50000",
   "Remarks":"Please make the payment against the invoice INV1235",
   "ReturnURL":"https://example.com/txnCompleted/"
}
{  
   "XpressID":"DBRV000001",
   "ErrorCode":"000",
   "ErrorDescription":"Success",
   "Response":{  
   "PaymentURL":"https://uat.paymate.co.in/PayMateSite/SenderAuthentication.aspx?guid=3849CDACCE66568C34F78D607304A135&prakriya=07CAA0832C2DF798703C660211FBCC2A",
   "TransactionRefNo":"811616017142",
   "OrderID":"WAT1238"
  }
}

Get Request Payment Status

Method name - GetRequestPaymentReport()

Description:Get all the pending request payments which are still awaiting payment by the customer. This method can also be used to fetch pending requests within a specific date range or get status of a specific pending request.

Request parameters

Sr.No Parameter Required Data Type Max Length Special Character Description
1 TransactionRefNo Optional Numeric 12 “PayMate” Reference No against the requested transaction
2 OrderID Optional Alphanumeric 20 Business OrderID against the requested transaction
3 FromDate Optional Date 10 / DD/MM/YYYY
4 ToDate Optional Date 10 / DD/MM/YYYY
*Note: Either TransactionRefNo or OrderID need to be present when making this API request

Response parameters

Sr.No Parameter Required Data Type Max Length Special Character Description
1 XpressID Yes Alphanumeric 20 Sent during Request
2 ErrorCode Yes Numeric 3 if strStatus=Success then 000 else specific error code will be provided
3 ErrorDescription Yes Text 100 if strErrorCode=000 then Success else Specific Error Description
4 Response Yes Text Array of response data. In case of any error this parameter will be empty
Get Request Payment Status
{  
"OrderId":"WAT1238",
"TransactionRefNo":"",
"FromDate":"",
"ToDate":""
}
{  
"XpressID":"DBRV000001",
"ErrorCode":"000",
"ErrorDescription":"Success",
"Response":[  
{  
"TransactionRefNo":"811616017142",
"CompanyName":"Watson Watches Co",
"ReferenceCode":"V001",
"Amount":50000,
"TrasnsactioStatus":"000",
"TrasnsactionMessage":"Success",
"BankRefNo":"3445767676345",
"RequestDate":"26-04-2018 18:27:55",
"SettlementDate":"27-04-2018 14:12:28",
"OrderId":"WAT1238"
   }
 ],
}

Error Codes & Description

Kindly refer the following table for Error Description

Sr.No Error Code Description
1 000 Success
2 101 UnAuthorised User Access Denied
3 102 Request Data Decryption Failed
4 103 Invalid Header XpressID
5 104 UnAuthorised Access of Request Type / Sub Type
6 105 Request Data has been Tampered
7 106 Request Data Validation Fail - Company Name
8 107 Request Data Validation Fail - Contact Person
9 108 Request Data Validation Fail - Mobile Number
10 109 Request Data Validation Fail - Email Address
11 120 SOAP Credential is Empty
12 122 Request Data Validation Fail - Company Code
13 123 Invalid Company Code
14 124 Empty / Invalid Company Name
15 125 Empty / Invalid Contact Person
16 126 Empty / Invalid Mobile Number
17 127 Empty / Invalid Email Address
18 128 Empty / Invalid Company Address
19 129 Request from invalid Source
20 159 Transaction Amount is Blank or Invalid Amount
21 162 Remitter Bank Account No is Blank
22 163 Invalid Remitter Account No
23 166 Remitter Bank IFSC is Blank
24 167 Invalid Remitter Bank IFSC
25 176 Invalid OrderId
26 177 Invalid PMX TransactionID
27 178 Invalid Input Parameter(s)
28 179 Cannot Abort Transaction
29 180 Amount limit exceeded
30 181 Remarks length exceeded
31 192 No Method Access for ip
32 198 Awaiting to check
33 199 Awaiting to approve
34 200 Awaiting to pay
35 201 Awaiting payment
36 202 Sent to bank
37 203 Aborted
38 204 Failed
39 205 Expired
40 207 Pending
41 211 Processing
42 212 Rejected
43 214 Returned from beneficiary
44 215 Scheduled for next working day
45 216 Sent to Beneficiary
46 224 Transaction already processed
47 225 No Record(s) found
48 226 Invalid Vendor's XpressId
49 227 OrderID Already Exsits.
50 228 Empty / Invalid Sender Code.
51 229 Sender Name is Empty.
52 230 Payment request has been initiated successfully
53 231 Paid
54 232 Empty / Invalid Company Name.
55 233 Empty / Invalid Account No.
56 234 Empty / Invalid Date.
57 235 Invalid Date Range
58 999 Technical error
Error Codes & Description