Name Mismatch Mechanism

Overview

For Pay Out transactions, Xenith verifies the provided recipient’s bank account name against official bank records. By default, transactions with a name mismatch will fail immediately. However, you can request to enable the Name Mismatch Mechanism, which allows you to review mismatched transactions before deciding whether to approve or reject them.

📘

By default, name mismatches cause transactions to fail. You can request to enable this feature for specific currencies by reaching out to [email protected]

Validation Logic

To determine whether there's a name mismatch between the name you submitted and the actual name from the bank, we follow this process:

  1. Normalization
    1. Trim all blank spaces (leading, trailing, and in-between multiple spaces).
    2. Convert all characters to lowercase to avoid case sensitivity issues.
  2. Character Sorting
    1. Alphabetically sort the characters in both the submitted name and the actual name returned from the bank.
    2. This helps reduce issues due to transposition or different name orders.
  3. Levenshtein Similarity
    1. After normalization and sorting, we calculate the Levenshtein distance similarity between the two names.
    2. If the similarity is 80% or higher, we consider it a match.

Example:

Submitted NameActual Bank NameNormalized & Sorted (Submitted Name)Normalized & Sorted (Actual Name)Levenshtein SimilarityMatch Result
Wiranto AndiAndi Wirantoaadiinorrtwaadiinorrtw100%Matched
Nguyễn Thị MaiMai Nguyen Thiyaeghiimnnstuyaeghiimnnstuyy92.85%Matched
Andi Wiranto HadiAndi Wirantoaaddhiiinnortwadiinnortw71.43%Mismatched
Nguyễn Thị MaiNguyen Maiaeghiimnntuyaegimnnuy75%Mismatched

You can check Levenshtein similarity between two names using tools like https://awsm-tools.com/levenshtein-distance

Handling Name Mismatch (Mechanism Enabled)

  • Transactions are labeled as "Name Mismatch" instead of failing immediately.
  • You can manage these transactions in the "Name Mismatch" tab on the dashboard.
  • On the transaction details page, you can take one of the following actions:
    • Approve – Process the transaction using the bank’s recorded name.
    • Reject – Cancel the transaction immediately.

      Actions are available for Merchant Users with "Full Access" Pay Out Module Permission:

Approving a Name Mismatch Transaction

To approve a transaction despite a name mismatch:

  1. Select the Transaction: Click on the transaction you want to approve.
  2. Click "Approve": In the transaction details page, click "Approve".
  3. Review and Verify: Check the recipient’s details, including provided account name, provided account number, and bank’s recorded name. (Optional) Add remarks if needed. If all details are correct, click "Approve".
  4. Confirm Approval: A confirmation pop-up will appear. Click "Continue" to proceed.
  5. Transaction Processing: The transaction will be processed using the bank’s recorded name. You can track its progress in the transaction timeline.

Rejecting a Name Mismatch Transaction

To reject a transaction due to a name mismatch:

  1. Select the Transaction: Click on the transaction you want to reject.
  2. Click "Reject": In the transaction details page, click "Reject".
  3. Review and Verify: Confirm that the names belong to different individuals. (Optional) Add remarks if needed. If you are sure the details are incorrect, click "Reject".
  4. Confirm Rejection: A confirmation pop-up will appear. Click "Continue" to finalize rejection.
  5. Transaction Failed: The transaction status will update to "Failed". You can check the history in the transaction timeline.