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 Queue

GET
https://merchantapi-demo.bill24.io/billflow/v1/payment
This interface Billers/Businesses can get queue as list.

Request

Query Params
d1
string 
optional
Start date
(yyyy-mm-dd)
Example:
2024-02-01
d2
string 
optional
End date
(yyyy-mm-dd)
Example:
2024-02-01
Header Params
Accept
string 
required
Default:
application/json
Content-Type
string 
required
Default:
application/json
Authorization
string 
optional
Default:
Bearer [your token]

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-02-01&d2=2024-02-01' \
--header 'Accept;' \
--header 'Authorization: Bearer [your token]'

Responses

🟢200OK
application/json
Body
paging
object 
required
per_page
integer 
required
pages
integer 
required
total
integer 
required
page
integer 
required
more
boolean 
required
data
array [object {12}] 
required
id
string 
optional
code
string 
optional
operation
string 
optional
note
null 
optional
status
string 
optional
completed
boolean 
optional
created_host
string 
optional
start_date
string 
optional
end_date
string 
optional
result
string 
optional
total_record
null 
optional
created_date
string 
optional
Example
{
    "paging": {
        "per_page": 50,
        "pages": 1,
        "total": 1,
        "page": 1,
        "more": false
    },
    "data": [
        {
            "id": "j5wiZWu2",
            "code": "7861872f-8776-43cd-9be0-3a4577bca7be",
            "operation": "cus.push",
            "note": null,
            "status": "done",
            "completed": true,
            "created_host": "None",
            "start_date": "2024-02-01T15:08:02.046534",
            "end_date": "2024-02-01T15:08:15.503621",
            "result": "success",
            "total_record": null,
            "created_date": "2024-02-01T15:07:58.366856"
        }
    ]
}
Modified at 2024-08-22 07:19:45
Previous
Push Bill
Next
Get Queue Detail