Skip to main content
POST
/
api
/
v1
/
payment-methods
/
verify
{
  "bin_code": "970436",
  "account_number": "1234567890"
}
{
  "message": "success",
  "data": {
    "bank": {
      "id": 1,
      "bank_name": "Vietcombank",
      "short_name": "VCB",
      "bin_code": "970436",
      "image": "https://example.com/vcb.png"
    },
    "account_name": "NGUYEN VAN A",
    "account_number": "1234567890"
  }
}

Overview

Partners can verify bank account numbers to confirm the account holder’s name before initiating withdrawals.
bin_code
string
required
Bank Identification Number (BIN) code.
account_number
string
required
Bank account number to verify.
{
  "bin_code": "970436",
  "account_number": "1234567890"
}
{
  "message": "success",
  "data": {
    "bank": {
      "id": 1,
      "bank_name": "Vietcombank",
      "short_name": "VCB",
      "bin_code": "970436",
      "image": "https://example.com/vcb.png"
    },
    "account_name": "NGUYEN VAN A",
    "account_number": "1234567890"
  }
}