This operation is to verify the transaction status.
Request
AccessToken will be share separately
Body Params application/json
Search by reference number at merchant side
Search by transaction number at Bill24 side
Search by reference number at bank side
purpose_of_transaction
string
requiredSearch by bill issue date or bill number
{
"identity_code": "234000545",
"purpose_of_transaction": "INV23001"
}
Request samples
curl --location --request POST 'https://merchantapi-demo.bill24.io/transaction/v2/verify' \
--header 'Accept: application/json' \
--header 'token: {AccessToken}' \
--header 'Content-Type: application/json' \
--data-raw '{
"identity_code": "234000545",
"purpose_of_transaction": "INV23001"
}'
Responses
application/json Transaction number at Bill24 side
Original amount of the transaction
Fee charge of the transaction
Currency code ISO 4217(USD, KHR...)
Reference number at merchant side
Reference number at bank side
purpose_of_transaction
string
requiredBill issue date or bill number
Status of the transaction
Phone number of the customer
{
"code": "SUCCESS",
"message": "Transaction found.",
"data": {
"tran_id": "fb8ca8005094",
"tran_date": "2023-05-10T15:47:12.890062",
"tran_amount": 20000,
"fee_amount": 500,
"total_amount": 20500,
"currency": "KHR",
"identity_code": "234000545",
"bank_code": "AMK",
"bank_ref": "FT1234567890",
"purpose_of_transaction": "INV23001",
"status": "success",
"customer_code": "",
"customer_name": "",
"customer_phone": "",
"description": ""
}
}
Modified at 2025-02-25 01:42:47