Webhooks list

Postman collection

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

{
    "project_name": "",
    "categories": [
        {
            "category_id": "",
            "code": "",
            "creation_time": "",
        }
    ]
}            

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

{
    "project_name": "",
    "categories": [
        {
            "category_id": "",
            "code": "",
            "last_update_time": "",
        }
    ]
}            

  • project_name (string) - name of online store
  • categories (array) - array of objects with categories
    • category_id (int) - category ID
    • code (string) - category code
    • deletion_time (datetime) - time of deletion
{} Request JSON

{
    "project_name": "",
    "categories": [
        {
            "category_id": "",
            "code": "",
            "deletion_time": "",
        }
    ]
}             

Changelog

Datum Typ Změna
5.9.2024 Categories.create, Categories.update, Categories.delete

The optimization of the maximum number of records that the endpoint returns is 5000. More records are coming in the next request.