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
  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

Body Params application/json

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

Example
{
    "code": "000",
    "message": "success!",
    "message_kh": "ជោគជ័យ!"
}
Modified at 2024-09-12 10:48:50
Previous
Inquiry Consumer validate
Next
Inquiry Consumer Debt