Biller will request to this endpoint to verify a direct debit subscription via Bill24.
Request
Body Params application/json
{
"subscription_no": "SUB123"
}
Request Code Samples
curl --location --request POST 'https://merchantapi-demo.bill24.io/direct_debit/subscription/verify' \
--header 'Content-Type: application/json' \
--data-raw '{
"subscription_no": "SUB123"
}'
Responses
application/json {
"code": "000",
"message": "Success",
"message_kh": "ជោគជ័យ",
"data": {
"status": "Active",
"bank_ref": "BANK_REF_456",
"subscribe_date": "2025-08-01T10:00:00Z",
"bank_name": "Bank ABC",
"bank_name_kh": "ធនាគារ ABC",
"details": [
{
"consumer_code": "CON789",
"consumer_name": "Jane Smith",
"consumer_name_latin": "Jane Smith",
"additional_information": "VIP Customer"
}
]
}
}
Modified at 2025-08-14 04:00:42