Get List bills
GET
https://merchantapi-demo.bill24.io/bill_payment/{{customer_sync_code}}/get_bills
Biller could call this api to get list invoice of that customer#
Request
Header Params
Content-Type
string
required
Example:
application/json
Authorization
string
required
Example:
Bearer {token get from endpoint (Authorization)}
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 GET 'https://merchantapi-demo.bill24.io/bill_payment/{{customer_sync_code}}/get_bills' \
--header 'Authorization: Bearer {token get from endpoint (Authorization)}' \
--header 'Content-Type: application/json'
Responses
🟢200Success
application/json
Body
code
string
optional
message
string
optional
message_kh
string
optional
data
array [object {11}]
optional
ref_id
string
optional
date
string
optional
due_date
string
optional
description
string
optional
currency
string
optional
total_amount
number
optional
customer_sync_code
string
optional
total_tax
number
optional
invoice_status
string
optional
details
array [object {7}]
optional
payment
object
optional
Example
{
"code": "000",
"message": "Success",
"message_kh": "ជោគជ័យ",
"data": [
{
"ref_id": "101",
"date": "2024-06-22T02:41:55.350Z",
"due_date": "2024-06-30T06:50:55.350Z",
"description": "upload bills",
"currency": "USD",
"total_amount": 10,
"customer_sync_code": "xxxxxxxxx",
"total_tax": 0,
"invoice_status": "success",
"details": [
{
"item_mame": "A001",
"description": "Hello",
"quantity": 2,
"price": 5,
"amount": 10,
"tax_amount": 0,
"tax_name": "Charge tax"
}
],
"payment": {
"checkout_link": "https://checkout-demo.bill24.io/checkoutv2/960D70FB7B9C",
"checkout_ref": "960D70FB7B9C",
"payment_date": "2024-06-22T02:41:55.350Z",
"payment_ref": "12345",
"payment_method": "wallet"
}
}
]
}
Modified at 2025-04-04 03:19:32