- CHECKOUT/ DEEPLINK
- test
- Merchant Proxy
- Bill24 Proxy
Push Customer
POST
https://supplierapi-demo.bill24.net/customer/push
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
org_code
string
optional
sync_code
string
required
if sync_code does not exists, new record will be added or else if will override existing record
name
string
required
name_kh
string
optional
phone
string
optional
email
string
optional
address
string
optional
address_kh
string
optional
tin_number
string
optional
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