- KHQR Integration Specification for API
Transaction Verification
POST
https://merchantapi-demo.bill24.io/transaction/v2/verify
Request
Header Params
Content-Type
string
required
Example:
application/json
Accept
string
required
Example:
application/json
token
string
required
Example:
{AccessToken}
Body Params application/json
Body Params
identity_code
string
required
tran_id
string
optional
bank_ref
string
optional
purpose_of_transaction
string
required
Example
{
"identity_code": "234000545",
"purpose_of_transaction": "INV23001"
}
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/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
🟢200Success
application/json
Body
Responses
code
string
required
message
string
required
data
object
required
tran_id
string
required
tran_date
string
required
tran_amount
integer
required
fee_amount
integer
required
total_amount
integer
required
currency
string
required
identity_code
string
required
bank_code
string
required
bank_ref
string
required
purpose_of_transaction
string
required
status
string
required
customer_code
string
optional
customer_name
string
optional
customer_phone
string
optional
description
string
optional
Example
{
"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