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. Bill24 Hosted
  • Bill24 Hosted
    • Overview
    • FAQ
    • Authorization
      POST
    • Import Invoice
      POST
    • Get Transaction
      GET
  1. Bill24 Hosted

Get Transaction

GET
https://merchantapi-demo.bill24.io/billflow/v1/payment
This interface allow Billers/Businesses get payments from Bill24 Hosted. Bill24 will response payments default, you can filter as well.

Request

Query Params

Header Params

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 --request GET 'https://merchantapi-demo.bill24.io/billflow/v1/payment?d1=2024-06-01T00:00:00&d2=2024-08-30T23:59:00&consumerCode&paymentMethod&currencyId' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json'

Responses

🟢200OK
application/json
Body

Example
[
    {
        "code": "834400013402",
        "consumerCode": "00013402",
        "consumerName": "Nheb Nim",
        "billerCode": "8344",
        "description": "",
        "tranDate": "2024-06-27T03:34:15.219+07:00",
        "tranId": "12012012012001",
        "paymentMethod": 1,
        "tranAmount": 4741517.54,
        "convenienceFeeAmount": 0,
        "sponserFeeAmount": 0,
        "totalAmount": 4741517.54,
        "currencyId": "KHR",
        "overpay": 0,
        "bankRef": "10010101101",
        "bankName": "AC",
        "bankId": "AC",
        "bills": [
            {
                "id": "2000000000002224807",
                "refId": "",
                "refNumber": "24062113402",
                "paidAmount": 4741517.54,
                "date": "0001-01-01T00:00:00",
                "dueDate": "0001-01-01T00:00:00"
            }
        ]
    }
]
Modified at 2025-03-03 10:16:03
Previous
Import Invoice