APIs for Businesses
Home
APIs
  • Checkout/ Deeplink
  • Merchant Proxy
  • Bill24 Hosted
  • Auto Direct Debit
  • KHQR Integration Specification for API
  • Notification API
  • On Boarding Sub Biller API
Home
APIs
  • Checkout/ Deeplink
  • Merchant Proxy
  • Bill24 Hosted
  • Auto Direct Debit
  • KHQR Integration Specification for API
  • Notification API
  • On Boarding Sub Biller API
CHECKOUT/ DEEPLINKMerchant ProxyBill24 HostedAuto Direct Debit
KHQR Integration Specification for APINotification APIPayment Method
CHECKOUT/ DEEPLINKMerchant ProxyBill24 HostedAuto Direct Debit
KHQR Integration Specification for APINotification APIPayment Method
  1. Auto Direct Debit
  • Auto Direct Debit
    • Overview
    • FAQ
    • MOBILE SDKS
      • Flutter SDK
    • WEB SDKS
      • Web SDK
    • Authorization
      POST
    • Init Subscription
      POST
    • Inquiry Consumer validate
      POST
    • Consumer's Debt Update
      POST
    • Inquiry Consumer Debt
      POST
  1. Auto Direct Debit

Consumer's Debt Update

POST
{{bill24_domain}}/direct_debit/signal
Bill24 Implement this endpoint.
NOTE
When biller have new update debt for consumer biller need to send that consumer code list to bill24 for make payment by this endpoint.

Request

Header Params
Content-Type
string 
required
Example:
application/json
Authorization
string 
required
Get from endpoint authorize
Example:
Bearer {token}
Body Params application/json
consumer_codes
string 
required
List of sonsumer codes that has debt update
Example
{
  "consumer_code": [
    "C000001",
    "C000002"
  ]
}

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 -g --request POST 'https://merchantapi-demo.bill24.io/notification/v1/notificationmessage/send{{bill24_domain}}/direct_debit/signal' \
--header 'Authorization: Bearer {token}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "consumer_code" : ["C000001", "C000002"]
}'

Responses

🟢200Success
application/json
Body
code
string 
required
Response Code
message
string 
required
Response message in english
message_kh
string 
required
Response message in khmer
Example
{
  "code": "000",
  "message": "success!",
  "message_kh": "ជោគជ័យ!"
}
Previous
Inquiry Consumer validate
Next
Inquiry Consumer Debt