- KHQR Integration Specification for API
Webhook
POST
https://mock.apidog.com/m1/444561-0-default/webhook
NOTE Change to your best URL: https://yourdomain/webhook
Merchant need to enable Webhook feature in Bill24 portal.
Request
Header Params
Content-Type
string
required
Example:
application/json
Accept
string
required
Example:
application/json
Success
string
required
Example:
success
Body Params application/json
Parameters
tran_id
string
optional
tran_no
string
optional
payment_service_type
string
optional
Ex: 1. Bank Channel: transaction from Bank channel (mobile app, …)
2. KHQR: transaction scan QR code pay
3. Deeplink/Checkout: transaction from checkout page or from deeplink app to app
4. Direct Debit: transaction auto direct debit
tran_date
string
optional
total_amount
number
optional
currency
string
optional
bank_code
string
optional
bank_name
string
optional
bank_ref
string
optional
identity_code
string
optional
purpose_of_transaction
string
optional
device_code
string
optional
status
string
optional
customers
object
optional
branch_code
string
optional
branch_name
string
optional
customer_code
string
optional
customer_name
string
optional
customer_name_latin
string
optional
bill_no
string
optional
amount
number
optional
Example
{
"tran_id": "348b4b16-1f06-4563-8204-105a8420a067",
"tran_no": "6KOBTGwG7HSF",
"payment_service_type": "Bank Channel",
"tran_date": "2024-11-29T16:58:16.727168",
"tran_amount": 45,
"currency": "USD",
"bank_code": "AC",
"bank_name": "ACLEDA",
"bank_ref": "AC00112301",
"identity_code": "37627011",
"purpose_of_transaction": "",
"device_code": "",
"status": "success",
"customers": [
{
"branch_code": "",
"branch_name": "",
"customer_code": "37627011",
"customer_name": "MAO SAMON",
"customer_name_latin": "",
"bill_no": "",
"amount": 45
}
]
}
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://mock.apidog.com/m1/444561-0-default/webhook' \
--header 'Accept: application/json' \
--header 'Success: success' \
--header 'Content-Type: application/json' \
--data-raw '{
"tran_id": "348b4b16-1f06-4563-8204-105a8420a067",
"tran_no": "6KOBTGwG7HSF",
"payment_service_type": "Bank Channel",
"tran_date": "2024-11-29T16:58:16.727168",
"tran_amount": 45,
"currency": "USD",
"bank_code": "AC",
"bank_name": "ACLEDA",
"bank_ref": "AC00112301",
"identity_code": "37627011",
"purpose_of_transaction": "",
"device_code": "",
"status": "success",
"customers": [
{
"branch_code": "",
"branch_name": "",
"customer_code": "37627011",
"customer_name": "MAO SAMON",
"customer_name_latin": "",
"bill_no": "",
"amount": 45
}
]
}'
Responses
🟢200Success
application/json
Body
status
string
required
message
string
required
Examples
{
"status": "Success",
"message": "SUCCESS"
}
Modified at 2025-03-06 11:12:40