Customers
Webhooks list
- Orders
- Order Statuses
- Products
- Availabilities
- Labels
- Categories
- Customers
- Shipments
- Payments
- Pricelists
- Languages
- Documents
Customers.create
project_name(string) - name of online storecustomers(array) - array of objects with customerscustomer_id(int) - customer IDemail(string) - customer emailcode(string) - customer codecreation_time(datetime) - time of creation
{} Request JSON
{
"project_name": "",
"customers": [
{
"customer_id": "",
"email": "",
"code": "",
"creation_time": ""
}
]
}
Customers.update
project_name(string) - name of online storecustomers(array) - array of objects with customerscustomer_id(int) - customer IDemail(string) - customer emailcode(string) - customer codelast_update_time(datetime) - time of last update
{} Request JSON
{
"project_name": "",
"customers": [
{
"customer_id": "",
"email": "",
"code": "",
"last_update_time": ""
}
]
}
Customers.delete
project_name(string) - name of online storecustomers(array) - array of objects with customerscustomer_id(int) - customer IDemail(string) - customer emailcode(string) - customer codedeletion_time(datetime) - time of deletion
{} Request JSON
{
"project_name": "",
"customers": [
{
"customer_id": "",
"email": "",
"code": "",
"deletion_time": ""
}
]
}
Changelog
| Datum | Typ | Změna |
|---|---|---|
| 30.10.2024 | Customers.create |
Adding the active_ynblocked_yn attribute. |
| 5.9.2024 | Customers.create, Customers.update, Customers.delete |
The optimization of the maximum number of records that the endpoint returns is 5000. More records are coming in the next request. |