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

Create Payment

POST
https://supplierapi-demo.bill24.net/payment/push
This interface allow Billers/Businesses to clear bills at Bill24 side. In case customer paid by cash.

Request

Header Params

Body Params application/json

Example
{
  "data": [
    {
      "currency_id": "USD",
      "customer_sync": "CU003035",
      "description": "pay by cash",
      "title": "Invoice",
      "payment_method": "cash",
      "sync_code": "CU003035",
      "tran_date": "2024-02-14",
      "bill_syncs": "INV001",
      "total_amount": 10.0
    }
  ]
}

Request Code 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 POST 'https://supplierapi-demo.bill24.net/payment/push' \
--header 'Accept: application/json' \
--header 'token: 1603aa00dcc4426ba83298341bab126b' \
--header 'Content-Type: application/json' \
--data-raw '{
  "data": [
    {
      "currency_id": "USD",
      "customer_sync": "CU003035",
      "description": "pay by cash",
      "title": "Invoice",
      "payment_method": "cash",
      "sync_code": "CU003035",
      "tran_date": "2024-02-14",
      "bill_syncs": "INV001",
      "total_amount": 10.0
    }
  ]
}'

Responses

🟢200OK
application/json
Body

Example
{
    "id": "nn5RscTz",
    "code": "708839d8-5b18-4fd9-8c2e-cf0d111940a7",
    "operation": "pmt.push",
    "note": "",
    "status": "ready",
    "completed": false,
    "created_host": "chrome",
    "start_date": "null",
    "end_date": "null",
    "result": "null",
    "total_record": 1,
    "created_date": "2024-01-15T10:52:04.777467"
}
Modified at 2024-02-15 09:47:41
Previous
Webhook
Next
Get Payment