APIs for Businesses
Home
APIs
  • Checkout/ Deeplink
  • Merchant Proxy
  • Bill24 Hosted
  • Auto Direct Debit
  • KHQR Integration Specification for API
  • Notification API
  • On Boarding Sub Biller API
Home
APIs
  • Checkout/ Deeplink
  • Merchant Proxy
  • Bill24 Hosted
  • Auto Direct Debit
  • KHQR Integration Specification for API
  • Notification API
  • On Boarding Sub Biller API
CHECKOUT/ DEEPLINKMerchant ProxyBill24 HostedAuto Direct DebitKHQR Integration Specification for APINotification APIPayment Method
CHECKOUT/ DEEPLINKMerchant ProxyBill24 HostedAuto Direct DebitKHQR Integration Specification for APINotification APIPayment Method
  1. Activate Sub Biller API
  • Payment Method API
    • Overview
    • Response Code
    • MOBILE SDKS
      • iOS SDK
      • Android SDK
    • Authorization
      POST
    • Create Customer
      POST
    • Get Payment Methods
      GET
    • Settle Payment
      POST
    • Get List bills
      GET
    • Get Wallet Balance
      POST
    • Get Transaction Detail
      POST
  • Activate Sub Biller API
    • Overview
    • Response Code
    • Authorization
      POST
    • Onboarding
      POST
    • Get Available Banks
      GET
    • Add Link Account
      POST
    • Verify Linked Bank Account
      POST
  1. Activate Sub Biller API

Verify Linked Bank Account

POST
https://merchantapi-demo.bill24.io/on_boarding/verify_linked_account
This endpoint will be used to verify whether a CPO or sub-biller has successfully linked their bank account.

Request

Header Params
Content-Type
stringΒ 
required
Example:
application/json
Authorization
stringΒ 
required
Example:
Bearer {token get from endpoint (Authorization) }
Body Params application/json
supplier_sync_code
stringΒ 
required
Sub Biller id at Biller side used to link the bank account
bank_id
stringΒ 
optional
Bank identifier (e.g., AC, ABA) used for linking, if
required for filtering or confirmation
Example
{
  "supplier_sync_code": "CPO9983",
  "bank_id": "AC"
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://merchantapi-demo.bill24.io/on_boarding/verify_linked_account' \
--header 'Authorization: Bearer {token get from endpoint (Authorization) }' \
--header 'Content-Type: application/json' \
--data-raw '{
    "supplier_sync_code": "CPO9983",
    "bank_id": "AC"
}'

Responses

🟒200Success
application/json
Body
code
stringΒ 
optional
Response code
message
stringΒ 
optional
Response message in English
message_kh
stringΒ 
optional
Response message in Khmer
data
objectΒ 
optional
Main data object returned
supplier_sync_code
stringΒ 
optional
Sub Biller id at Biller side
code
stringΒ 
optional
Internal code of the supplier
name
stringΒ 
optional
Name of the supplier in English
name_kh
stringΒ 
optional
Name of the supplier in Khmer
address
stringΒ 
optional
Address of the supplier
bank_account_linked
arrayΒ [object {7}]Β 
optional
List of linked bank account objects
Example
{
  "code": "000",
  "message": "Success",
  "message_kh": "αž‡αŸ„αž‚αž‡αŸαž™",
  "data": {
    "supplier_sync_code": "CPO9983",
    "code": "6981",
    "name": "Frontier CPO",
    "name_kh": "αž αŸ’αžœαŸ’αžšαž»αž„αž’αžΈαž™αŸ‰αžΎαžšαžŸαŸŠαžΈαž—αžΈαž’αžΌ",
    "address": "Phnom Penh",
    "bank_account_linked": [
      {
        "account_number": "0001******4411",
        "status": "active",
        "currency": "KHR",
        "bank_code": "AC",
        "bank_name": "ACLEDA",
        "bank_name_kh": "αž’αŸαžŸαŸŠαžΈαž›αžΈαžŠαžΆ",
        "bank_logo": "https://b24-upload.s3.ap-southeast-1.amazonaws.com/banklogo2024/AC.png"
      }
    ]
  }
}
🟠404Record not found
🟠400Invalid input
Previous
Add Link Account