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 Detail

GET
https://supplierapi-demo.bill24.net/queue/{id}
This interface Billers/Businesses can get queue detail by using id.
NOTE
Queue status:
• processing
• ready
• error
• done
• operation: queue operation (payment, bill, customer, …)
• total_added: total add new records (bill, customer , payment ,..)
• total_updated: total updated records
• total_canceled: total error records
• total_deleted: total deleted records
• errors: error records detail
• success: record detail

Request

Path Params
id
string 
required
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/queue/' \
--header 'Accept: application/json' \
--header 'token: 1603aa00dcc4426ba83298341bab126b'

Responses

🟢200OK
application/json
Body
status
string 
optional
message
string 
optional
data
object 
optional
total_added
integer 
optional
total_canceled
integer 
optional
total_deleted
integer 
optional
total_updated
integer 
optional
total_records
integer 
optional
operation
string 
optional
Example
{
    "status": "done",
    "message": "Queue is done",
    "data": {
        "total_added": 0,
        "total_canceled": 0,
        "total_deleted": 0,
        "total_updated": 1,
        "total_records": 1,
        "operation": "cus.push"
    }
}
Modified at 2024-02-15 09:47:34
Previous
Get Queue
Next
Webhook