API Docs
  • Introduction
  • Credential
  • Error Codes
  • Token Validation
  • Signature Validation
  • Quick Start
    • Accepting via Payment Page
    • Accepting Using Own Page
    • Paying Out
  • ACCOUNT
    • Pool Balance
  • Cloud Payment
    • Payment Service
    • Collection
      • Create Collection
      • Manage
        • Get Collection List
        • Get a Collection
        • Update Collection
        • Activate Collection
        • Deactivate Collection
        • Delete Collection
    • Bill
      • Create Bill
      • Callback
      • Manage
        • Get Bill List
        • Get a Bill
        • Get Bill Transaction Status
        • Update Bill
        • Delete Bill
    • Transaction List
    • Transaction Status
  • Payout
    • Payout Service
    • Payout Transaction List
    • Create Payout
    • Payout Status
      • Callback
      • Status Checking
    • Bank Account Verification
      • Bank Verification Channel ( Deprecated )
      • Bank Account Validation
  • Suite Plugin
    • Woocommerce
    • Open Cart
  • Library
    • Credit Card
  • SUPPORT
    • Frequently Asked Question
Powered by GitBook
On this page
  • Authentication
  • Getting bank verification channel list
  1. Payout
  2. Bank Account Verification

Bank Verification Channel ( Deprecated )

Bank verification channel provides a comprehensive array of banks for account validation. Enhance the reliability of financial transactions by verifying account details across a diverse range of supported banks.

You can only verify accounts of the available channels. Kindly ensure you have selected the correct channels before verifying the recipient accounts.

Authentication

LeanX uses Auth Token to authenticate in each request's header.

Auth Token can be retrieved in your portal dashboard under API page.

Request Header

{
    "auth-token": "LP-0D7C06DE-MM|7394e58e-edee-4c42-9ca5-bcbc449f1b9f|2141df4a3cb633d5ce8683bb0c55067e5caebfbe07390dde277dc455bcc95c91723a81b5e565c7c02d68fb84e396722563016bf99e576a4b8cdbe4423fbf226b"
}

Getting bank verification channel list

HTTP Method: POST

https://api.leanx.dev/api/v1/merchant/list-verification-channel

Request Body

no request body

Response

{
  "response_code": 2000,
  "description": "SUCCESS",
  "app_version": "/api/v1",
  "talk_to_server_before": "2023-12-05T19:21:18.941014",
  "data": {
    "list": {
      "draw": 30,
      "record_total": 30,
      "record_filtered": 30,
      "data": [
        {
          "payout_service_id": 1,
          "unique_reference": "PAYOUT_MBSB_BANK_WEBPAY",
          "name": "MBSB BANK BERHAD",
          "category_code": "SWITCH_PAYOUT_WEBPAY",
          "group_code": "SWITCH_PAYOUT_WEBPAY",
          "channel_code": "SWITCH_PAYOUT_MY_MBSB",
          "record_status_id": 1,
          "record_status": "ACTIVE",
          "duitnowServices": [
            {
              "staging_bic_code": "AFBQMYKL",
              "production_bic_code": "AFBQMYKL",
              "record_status_id": 1,
              "id": 1
            }
          ]
        },
        ...........
        {
          "payout_service_id": 30,
          "unique_reference": "PAYOUT_UOB_BANK_WEBPAY",
          "name": "United Overseas Bank Berhad (UOB)",
          "category_code": "SWITCH_PAYOUT_WEBPAY",
          "group_code": "SWITCH_PAYOUT_WEBPAY",
          "channel_code": "SWITCH_PAYOUT_MY_UOB_BANK",
          "record_status_id": 1,
          "record_status": "ACTIVE",
          "duitnowServices": [
            {
              "staging_bic_code": "UOVBMYKL",
              "production_bic_code": "UOVBMYKL",
              "record_status_id": 1,
              "id": 30
            }
          ]
        }
      ],
      "next_page_start": null,
      "next_page_length": null,
      "previous_page_start": null,
      "previous_page_length": null
    }
  },
  "breakdown_errors": null,
  "token": "18e0933d-6bc1-4808-9bc7-aad2bcd38686"
}

PreviousBank Account VerificationNextBank Account Validation

Last updated 1 year ago