Biller could call this api to get wallet for that customer
Request
Body Params application/json
{
"customer_sync_code": "C0020"
}
Request samples
curl --location --request POST 'https://merchantapi-demo.bill24.io/instant_payment/get_wallet_balance' \
--header 'Authorization: Bearer {token get from endpoint (Authorization)}' \
--header 'Content-Type: application/json' \
--data-raw '{
"customer_sync_code": "C0020"
}'
Responses
application/json {
"code": "000",
"message": "Success",
"message_kh": "ជោគជ័យ",
"data": [
{
"id": "8d036742-b2f7-447c-8fad-ef2e6ef2a6dc",
"name": "Oone wallet",
"balance": 106001,
"currency": "KHR"
}
]
}
Modified at 2025-07-28 09:53:12