Products

  • project_name (string) - name of online store
  • products (array) - array of objects with products
    • product_id (int) - product ID
    • code (string) - product code
    • creation_time (datetime) - time of creation
{} Request JSON

{
    "project_name": "",
    "products": [
        {
            "product_id": "",
            "code": "",
            "creation_time": "",
        }
    ]
}     

  • project_name (string) - name of online store
  • products (array) - array of objects with products
    • product_id (int) - product ID
    • code (string) - product code
    • last_update_time (datetime) - time of last update
{} Request JSON

{
    "project_name": "",
    "products": [
        {
            "product_id": "",
            "code": "",
            "last_update_time": "",
        }
    ]
}     

  • project_name (string) - name of online store
  • products (array) - array of objects with products
    • product_id (int) - product ID
    • code (string) - product code
    • deletion_time (datetime) - time of deletion
  • variants (array) - array of objects with variants
    • variant_id (int) - variant ID
    • code (string) - variant code
    • deletion_time (datetime) - time of deletion
{} Request JSON

{
    "project_name": "",
    "products": [
        {
            "product_id": "",
            "code": "",
            "deletion_time": "",
        }
    ],
    "variants": [
        {
            "variant_id": "",
            "code": "",
            "deletion_time": ""
        }
    ]
}       

Changelog

Datum Typ Změna
5.9.2024 Products.create, Products.update, Products.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
Labels