- Payment Method API
- Activate Sub Biller API
Get Transaction Detail
POST
https://merchantapi-demo.bill24.io/transaction/instant_payment/detail
Request
Header Params
Content-Type
string
required
Example:
application/json
Authorization
string
required
Example:
Bearer {token get from endpoint (Authorization)}
Body Params application/json
reference
string
required
Example
{
"reference": "R002-96735"
}
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/instant_payment/detail' \
--header 'Authorization: Bearer {token get from endpoint (Authorization)}' \
--header 'Content-Type: application/json' \
--data-raw '{
"reference": "R002-96735"
}'
Responses
🟢200Success
application/json
Body
code
string
optional
message
string
optional
message_kh
string
optional
data
object
optional
reference_id
string
optional
transaction_id
string
optional
supplier_id
string
optional
transaction_type
string
optional
tran_amount
number
optional
total_amount
number
optional
currency
string
optional
KHR
tran_date
string
optional
expire_date
string
optional
status
string
optional
customer_name
string
optional
customer_name_kh
string
optional
bank_id
string
optional
bank_ref
string
optional
Example
{
"code": "000",
"message": "Transaction found",
"message_kh": "ប្រតិបត្តិការបានរកឃើញ",
"data": {
"reference_id": "R002-96735",
"transaction_id": "d9616387-351e-4810-bb40-a396d0e2e8ff",
"supplier_id": "8ee268d8-ed4b-44a4-951b-734566a8ee5a",
"transaction_type": "wallet_payment",
"tran_amount": 5000,
"total_amount": 5000,
"currency": "KHR",
"tran_date": "2025-04-08T11:51:58.049221",
"expire_date": "2025-05-08T11:51:58.049254",
"status": "success",
"customer_name": "Bunai04",
"customer_name_kh": "",
"bank_id": null,
"bank_ref": "FT12937HDGT36467H"
}
}
🟠404Record not found
🟠400Invalid input
Modified at 2025-04-11 02:38:02