APIs for Businesses (Test)
Home
Services
  • Checkout / Deeplink
  • Merchant Proxy
Home
Services
  • Checkout / Deeplink
  • Merchant Proxy
Default module
Default module
  1. Bill24 Proxy
  • CHECKOUT/ DEEPLINK
    • CHECKOUT/ DEEPLINK
      • Overview
      • Webhook
      • Full Example
      • FAQ
      • MOBILE SDKS
        • Flutter SDK
        • iOS SDK
        • Android SDK
      • WEB SDKS
        • Web SDK
      • Transaction Initiation
      • Transaction Verification
      • Authorization
  • test
    • CHECKOUT/ DEEPLINK
      • Overview
      • Webhook
      • Full Example
      • FAQ
      • MOBILE SDKS
        • Flutter SDK
        • iOS SDK
        • Android SDK
      • WEB SDKS
        • Web SDK
      • Transaction Initiation
      • Transaction Verification
      • Authorization
  • Merchant Proxy
    • Merchant Proxy
      • Overview
      • Full Example
      • FAQ
      • Proxy
      • Webhook
      • test
  • Bill24 Proxy
    • Bill24 Proxy
      • Overview
      • Full Example
      • FAQ
      • Test
      • Push Customer
        POST
      • Push Bill
        POST
      • Get Queue
        GET
      • Get Queue Detail
        GET
      • Webhook
        POST
      • Create Payment
        POST
      • Get Payment
        GET
  1. Bill24 Proxy

Get Payment

GET
https://supplierapi-demo.bill24.net/payment/
This interface allow Billers/Businesses get payments from Bill24 proxy/host. Bill24 will response payments default, you can filter as well.

Request

Query Params
d1
string 
optional
Example:
2024-01-10
d2
string 
optional
Example:
2024-01-11
customer_sync
string 
optional
payment_method
string 
optional
currency_id
string 
optional
source
string 
optional
Header Params
Accept
string 
required
Example:
application/json
token
string 
required
Example:
1603aa00dcc4426ba83298341bab126b

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://supplierapi-demo.bill24.net/payment/?d1=2024-01-10&d2=2024-01-11&customer_sync&payment_method&currency_id&source' \
--header 'Accept: application/json' \
--header 'token: 1603aa00dcc4426ba83298341bab126b'

Responses

🟢200OK
application/json
Body
message
string 
required
data
array [object {21}] 
required
code
string 
optional
title
string 
optional
description
string 
optional
tran_date
string 
optional
payment_type
string 
optional
payment_method
string 
optional
pay_from
null 
optional
tran_amount
number 
optional
fee_amount
integer 
optional
supplier_fee
number 
optional
total_amount
number 
optional
currency_id
string 
optional
customer_name
string 
optional
sync_code
string 
optional
payment_ref
string 
optional
bank_name
string 
optional
customer_org_code
string 
optional
customer_sync_code
string 
optional
bank_id
string 
optional
ext
object 
optional
bills
array [object {6}] 
optional
Example
{
    "message": "DATA FOUND",
    "data": [
        {
            "id": "UO1RlXW4",
            "code": "644100001143",
            "title": "",
            "description": "",
            "tran_date": "2024-02-01T17:30:44.373336",
            "payment_type": "partial",
            "payment_method": "cash",
            "pay_from": null,
            "tran_amount": 400,
            "fee_amount": 0,
            "total_amount": 400,
            "currency_id": "KHR",
            "customer_name": "Vi",
            "supplier_fee": 0,
            "sync_code": "",
            "payment_ref": "",
            "is_exported": false,
            "source": "b24",
            "bank_name": "Cash / Cheque",
            "customer_org_code": "6441-000026",
            "customer_sync_code": "RLIjQ45Z",
            "bank_id": "",
            "ext": {
                "paid_to": "Heng group",
                "paid_by": null
            },
            "bills": [
                {
                    "due_date": "2024-03-01",
                    "code": "644198399",
                    "org_code": "98399",
                    "pay_amount": 400,
                    "customer_syn_code": "RLIjQ45Z",
                    "id": "2FecLCrO",
                    "total_amount": 6000,
                    "sync_code": "2FecLCrO",
                    "ext": {
                        "digit": "2",
                        "code": "",
                        "discount": "",
                        "tax": "",
                        "delivery": "",
                        "exchange_rate": "",
                        "less_withholding_tax": ""
                    },
                    "due_amount": 2000,
                    "bill_id": "2FecLCrO",
                    "bill_date": "2024-01-31"
                }
            ],
            "receipt_url": "https://demo.bill24.net/public/receipt/UO1RlXW4"
        }
    ]
}
Modified at 2024-02-15 09:47:48
Previous
Create Payment