For the complete documentation index, see llms.txt. This page is also available as Markdown.

Synchronization events

Detailed events containing data changes.

Attributes

attribute_created

included with events: attribute_created

{
  "type": "attribute_created",
  "payload": {
    "code": "attribute_code",
    "type": "TEXT",
    "scope": "local",
    "name": [
      {
        "language": "en_GB",
        "value": "This is the attribute name"
      }
    ]
  }
}
{
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "The type of synchronization event."
    },
    "payload": {
      "type": "object",
      "description": "The detailed payload of the synchronization event.",
      "properties": {
        "code": {
          "type": "string"
        },
        "type": {
          "type": "string",
          "enum": ["DATE", "FILE", "GALLERY", "IMAGE", "MULTI_SELECT", "NUMERIC", "PRICE", "PRODUCT_RELATION", "SELECT", "TEXT_AREA", "TEXT", "UNIT"]
        },
        "scope": {
          "type": "string",
          "enum": ["local", "global"]
        },
        "name": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "language": {
                "type": "string"
              },
              "value": {
                "type": "string"
              }
            },
            "required": [
              "language",
              "value"
            ]
          }
        }
      },
      "required": [
        "code",
        "type",
        "scope",
        "name"
      ]
    }
  },
  "required": [
    "type",
    "payload"
  ]
}

attribute_name_changed

included with events: attribute_created, attribute_updated

attribute_option_code_changed

included with events: attribute_created, attribute_updated

attribute_option_created

included with events: attribute_created, attribute_updated

attribute_option_deleted

included with events: attribute_updated

attribute_option_name_changed

included with events: attribute_created, attribute_updated

Categories

category_created

included with events: category_created

category_name_changed

included with events: category_created, category_updated

Products

product_added_to_category

included with events: product_created, product_updated

product_binding_added

included with events: product_created, product_updated

product_binding_removed

included with events: product_updated

product_child_added

included with events: product_created, product_updated

product_child_quantity_changed

included with events: product_created, product_updated

product_child_removed

included with events: product_updated

product_created

included with events: product_created

product_removed_from_category

included with events: product_updated

product_value_added

included with events: product_created, product_updated

product_value_changed

included with events: product_created, product_updated

product_value_removed

included with events: product_updated

product_variant_added

included with events: product_updated

product_variant_removed

included with events: product_updated

Last updated

Was this helpful?