Biller will request to this endpoint to retrieve details of direct debit subscribers via Bill24.
Request
Body Params application/json
{
"consumerCodes": [
"CON789",
"CON012"
]
}
Request Code Samples
curl --location --request POST 'https://merchantapi-demo.bill24.io/direct_debit/subscription/subscribers' \
--header 'Content-Type: application/json' \
--data-raw '{
"consumerCodes": [
"CON789",
"CON012"
]
}'
Responses
application/json {
"code": "000",
"message": "Success",
"message_kh": "ជោគជ័យ",
"data": {
"code": "SUB123",
"name": "Jane Smith",
"nameLatin": "Jane Smith",
"additionalInformation": "Monthly subscription",
"accountInfo": [
{
"subscribeDate": "2025-08-01T10:00:00Z",
"status": "Active",
"customerBankAccount": {
"accountToken": "TOK456",
"code": "BANK789",
"name": "Bank ABC",
"bankLogo": "https://example.com/logo.png",
"priority": 1
}
}
]
}
}
Modified at 2025-08-14 04:12:55