Detailed Response Code Table

Response CodeMeaningDescriptionExpected Action
00ApprovedTransaction was successful.Proceed as expected.
01Status unknownStatus of the transaction is currently unknown.Wait for the settlement report to confirm the final status.
03Invalid SenderThe sender’s credentials are invalid.Verify the sender’s credentials and retry the request.
05Do not honorTransaction should not be honored.Investigate the sender’s account restrictions before retrying.
06Dormant AccountThe account is inactive or dormant.Reactivate the account or use a different account.
07Invalid AccountThe account number provided is invalid.Check the account number and correct any errors before retrying.
08Account Name MismatchAccount name does not match the account number.Ensure the account name matches the account number provided.
09Request processing in progressRequest is still being processed.Consider polling or waiting for the final status.
12Invalid transactionTransaction type or details are invalid.Review and correct the transaction details.
13Invalid AmountThe amount specified is not valid.Ensure the transaction amount is correct.
14Invalid Batch NumberThe batch number provided is invalid.Verify and correct the batch number before retrying.
15Invalid Session or Record IDThe session or record ID is invalid.Check the session or record ID and correct any errors.
16Unknown Bank CodeThe bank code provided is not recognized.Verify the bank code and correct any errors.
17Invalid ChannelThe specified channel is not valid for this transaction.Review the transaction channel and adjust accordingly.
18Wrong Method CallThe API method call is not appropriate for this transaction.Check the API documentation and use the correct method.
21No action is takenThe transaction was not processed.Determine the reason for no action and address it before retrying.
25Unable to locate recordThe specified record could not be found.Verify the record details and retry the request.
26Duplicate recordThe record already exists.Ensure the request is not duplicating an existing record.
30Format errorThe transaction format is incorrect.Review the request format and correct any errors.
34Suspected fraudTransaction is flagged for suspected fraud.Investigate the transaction for potential fraud before proceeding.
35Contact sending bankThe transaction requires further verification by the sender’s bank.Advise the sender to contact their bank for further information.
51No sufficient fundsSender’s account lacks sufficient funds.Inform the sender to provide sufficient funds or use a different account.
57Transaction not permitted to senderSender is not permitted to perform this transaction.Verify transaction permissions for the sender.
58Transaction not permitted on channelTransaction is not allowed on the specified channel.Review the channel’s permissions for this transaction.
61Transfer limit exceededTransaction exceeds the sender’s transfer limit.Reduce the transaction amount or increase the sender’s transfer limit.
63Security violationA security issue was detected with the transaction.Review security settings and ensure compliance with security protocols.
65Exceeds withdrawal frequencyThe transaction exceeds the allowed number of withdrawals.Advise the sender to adhere to the withdrawal frequency limits or contact support.
68Response received too lateThe response from the transaction was delayed.Investigate the cause of the delay and retry if necessary.
69Unsuccessful Account/Amount blockThe attempt to block the account or amount was unsuccessful.Verify the block request and retry the operation.
70Unsuccessful Account/Amount unblockThe attempt to unblock the account or amount was unsuccessful.Verify the unblock request and retry the operation.
71Empty Mandate Reference NumberThe mandate reference number was not provided.Ensure that a valid mandate reference number is included in the request.
91Beneficiary Bank not availableThe beneficiary’s bank is currently unavailable.Retry the transaction later or contact the bank for further details.
92Routing errorA routing error occurred in the transaction.Review the routing information and correct any errors before retrying.
94Duplicate transactionThe transaction has already been processed.Ensure that your application is not duplicating requests.
96System malfunctionA system error occurred, and the transaction could not be processed.Retry the transaction later or investigate system issues.
97Timeout waiting for a responseThe system timed out while waiting for a response.Retry the transaction after checking for network or system delays.

How to Use These Codes

Understanding and properly handling response codes is critical for building reliable and user-friendly applications. Below are some key considerations for using these codes in your application logic.

  • 00 (Approved or completed successfully): Indicates that the transaction was successful. Your application can proceed as expected.

  • 01 (Status unknown): The transaction status is currently unknown. You should wait for the settlement report to confirm the final status.

  • 03, 05, 06, 07: These codes typically indicate issues with the sender or the sender’s account, such as invalid credentials or a dormant account.

  • 09 (Request processing in progress): The request is still being processed. You may need to poll or wait for a final status.

  • 12, 13, 14, 15: These codes indicate issues with the transaction details, such as an invalid amount, transaction type, or record ID.

  • 51 (No sufficient funds): The sender’s account does not have enough funds to complete the transaction. This will typically require action on the sender’s part.

  • 57, 58, 61: These codes are related to transaction permissions and limits, such as exceeding withdrawal limits or attempting a restricted transaction.

  • 94 (Duplicate transaction): This indicates that the transaction has already been processed. Ensure that your application is not unintentionally duplicating requests.

  • 96, 97: These codes suggest technical issues such as a system malfunction or timeout. These often require retrying the request or investigating the system status.


Best Practices

Implement robust error handling in your application to manage different response codes effectively. This includes retry mechanisms, user notifications, and logging for future analysis.

  • Handling Errors: When you receive an error code, it’s important to implement appropriate error handling in your application. This could involve retrying the transaction, alerting the user, or logging the error for further investigation.

  • Logging: Keep logs of all response codes for auditing purposes. This can help in troubleshooting issues and improving the reliability of your application.

  • User Feedback: For codes that indicate user action is required (e.g., insufficient funds), ensure that your application provides clear and actionable feedback to the user.

  • System Monitoring: Regularly monitor your transactions for codes like 96 (System malfunction) or 97 (Timeout), as these can indicate underlying issues that need to be addressed promptly.