Create Customer
POST
https://merchantapi-demo.bill24.io/customer/create
This endpoint use to create customer#
Request
Header Params
Content-Type
string
required
Example:
application/json
Authorization
string
required
Example:
Bearer {token get from endpoint (Authorization)}
Body Params application/json
sync_code
string
required
name
string
required
name_kh
string
optional
phone
string
optional
email
string
optional
wallet
array [object {2}]
optional
customer you can pass this information.(can create only 2 wallets
with any currency )
name
string
optional
currency
string
optional
Example
{
"sync_code": "C001",
"name": "Kouern Deav",
"name_kh": "កឿនដៀវ",
"phone": "081991210/077881701",
"email": "deavkouern@gmail.com",
"wallet": [
{
"name": "Kouern Deav's Wallet(KHR)",
"currency": "KHR"
},
{
"name": "Kouern Deav's Wallet(USD)",
"currency": "USD"
}
]
}
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://merchantapi-demo.bill24.io/customer/create' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {token get from endpoint (Authorization)}' \
--header 'Content-Type: application/json' \
--data-raw '{
"sync_code": "C001",
"name": "Kouern Deav",
"name_kh": "កឿនដៀវ",
"phone": "081991210/077881701",
"email": "deavkouern@gmail.com",
"wallet": [
{
"name": "Kouern Deav'\''s Wallet(KHR)",
"currency": "KHR"
},
{
"name": "Kouern Deav'\''s Wallet(USD)",
"currency": "USD"
}
]
}'
Responses
🟢200Success
application/json
Body
code
string
optional
message
string
optional
message_kh
string
optional
data
object
optional
sync_code
string
optional
name
string
optional
name_kh
string
optional
phone
string
optional
email
string
optional
wallet
array [object {2}]
optional
Example
{
"code": "000",
"message": "Success",
"message_kh": "ជោកជ័យ",
"data": {
"sync_code": "C001",
"name": "Kouern Deav",
"name_kh": "កឿនដៀវ",
"phone": "081991210/077881701",
"email": "customer@gmail.com",
"wallet": [
{
"name": "Kouern Deav's Wallet(KHR)",
"currency": "KHR"
},
{
"name": "Kouern Deav's Wallet(USD)",
"currency": "USD"
}
]
}
}
Modified at 2025-04-04 02:04:26