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

Push Customer

POST
https://supplierapi-demo.bill24.net/customer/push
Billers/Businesses can push customer (new , update , remvove) through this interface to Bill24 proxy/host, after completed customer can search via Bank channnels.

Request

Header Params
Accept
string 
required
Example:
application/json
Content-Type
string 
required
Example:
application/json
token
string 
required
Example:
1603aa00dcc4426ba83298341bab126b
Body Params application/json
data
array [object {11}] 
required
code
string 
required
Customer code
org_code
string 
optional
Original Code from Biller / Business
sync_code
string 
required
PK or unique code for sync purpose

if sync_code does not exists, new record will be added or else if will override existing record
name
string 
required
Customer name
name_kh
string 
optional
Customer name in khmer
phone
string 
optional
Phone number
email
string 
optional
Email address
address
string 
optional
Customer Address
address_kh
string 
optional
Customer Address in khmer
tin_number
string 
optional
Customer TIN Number
is_active
boolean 
optional
default is true

is_active=false to remove from Bill Gateway
Example
{
    "data": [
        {
            "code": "2093-099003",
            "org_code": "099003",
            "sync_code": "099003",
            "name": "Nheb Nim",
            "name_kh": "ញ៉េប នីម",
            "phone": "",
            "email": "",
            "address": "48501 Perez Squares Apt. 905\nLake Hannah, GA 31366",
            "address_kh": "4173 Marie Circles\nMollyhaven, CA 27990",
            "tin_number": "",
            "is_active": true
        }
    ]
}

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 POST 'https://supplierapi-demo.bill24.net/customer/push' \
--header 'Accept: application/json' \
--header 'token: 1603aa00dcc4426ba83298341bab126b' \
--header 'Content-Type: application/json' \
--data-raw '{
    "data": [
        {
            "code": "2093-099003",
            "org_code": "099003",
            "sync_code": "099003",
            "name": "Nheb Nim",
            "name_kh": "ញ៉េប នីម",
            "phone": "",
            "email": "",
            "address": "48501 Perez Squares Apt. 905\nLake Hannah, GA 31366",
            "address_kh": "4173 Marie Circles\nMollyhaven, CA 27990",
            "tin_number": "",
            "is_active": true
        }
    ]
}'

Responses

🟢200OK
application/json
Body
id
string 
optional
code
string 
optional
operation
string 
optional
note
string 
optional
status
string 
optional
completed
boolean 
optional
created_host
string 
optional
start_date
null 
optional
end_date
null 
optional
result
null 
optional
total_record
string 
optional
created_date
string 
required
Example
{
    "id": "Ny5KzCQ4",
    "code": "12831cd5-0e78-40e7-bba6-6f046d9e5931",
    "operation": "cus.push",
    "note": "",
    "status": "ready",
    "completed": false,
    "created_host": "None",
    "start_date": null,
    "end_date": null,
    "result": null,
    "total_record": "1",
    "created_date": "2024-02-14T14:18:33.775055"
}
Modified at 2024-02-15 09:46:36
Previous
Test
Next
Push Bill