Customers

  • project_name (string) - name of online store
  • customers (array) - array of objects with customers
    • customer_id (int) - customer ID
    • email (string) - customer email
    • code (string) - customer code
    • creation_time (datetime) - time of creation
{} Request JSON

{
    "project_name": "",
    "customers": [
        {
            "customer_id": "",
            "email": "",
            "code": "",
            "creation_time": ""
        }
    ]
}              

  • project_name (string) - name of online store
  • customers (array) - array of objects with customers
    • customer_id (int) - customer ID
    • email (string) - customer email
    • code (string) - customer code
    • last_update_time (datetime) - time of last update
{} Request JSON

{
    "project_name": "",
    "customers": [
        {
            "customer_id": "",
            "email": "",
            "code": "",
            "last_update_time": ""
        }
    ]
}

  • project_name (string) - name of online store
  • customers (array) - array of objects with customers
    • customer_id (int) - customer ID
    • email (string) - customer email
    • code (string) - customer code
    • deletion_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.

Next article
Shipments