Biller will request to this endpoint to retrieve history of direct debit subscriptions via Bill24.
Request
Body Params application/json
{
"consumer_code": "CON789"
}
Request Code Samples
curl --location --request POST 'https://merchantapi-demo.bill24.io/direct_debit/subscription/histories' \
--header 'Content-Type: application/json' \
--data-raw '{
"consumer_code": "CON789"
}'
Responses
application/json {
"code": "000",
"message": "Success",
"message_kh": "ជោគជ័យ",
"data": {
"histories": [
{
"date": "2025-08-01T10:00:00Z",
"account_no": "ACC123",
"action": "Subscribed",
"bank_name": "Bank ABC",
"bank_name_kh": "ធនាគារ ABC",
"bank_code": "BANK789",
"bank_logo": "https://example.com/logo.png"
}
]
}
}
Modified at 2025-08-14 03:09:45