product/updated
Overview
| Property | Value |
|---|---|
| Webhook type | product/updated |
| Kafka topic | product.updated |
| Direction | Platform → Your endpoint |
Description
Fired when any field on an existing product is updated. This includes changes to title, description, pricing, handling attributes, and assignments.
Trigger Conditions
- A product's title, description, or slug is edited
- Pricing (
price,vatRate,currency) is changed - Handling attributes (
fragile,heatSensitive,parcels) are modified - A vendor or supplier is assigned or changed
- The preparation profile is updated
Message Envelope
json
{
"header": {
"organizationId": "org_xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"messageId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"webhookId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"type": "product/updated",
"date": "2024-03-15T10:23:45.000Z"
},
"body": { ... }
}The body field contains the full updated product object.
Body — Property Table
Product Object
| Field | Type | Nullable | Description |
|---|---|---|---|
id | string (uuid) | No | Unique product identifier |
organizationId | string (uuid) | No | Organization that owns this product |
title | string | Yes | Product display name |
description | string | Yes | Product description text |
slug | string | Yes | URL-friendly identifier (unique per organization) |
status | enum | Yes | DRAFT, ACTIVE, ARCHIVED, DISABLED, HOLD |
scope | enum | No | GLOBAL or LOCAL |
model | enum | No | PRODUCT or BUNDLE |
fragile | boolean | No | Fragile handling flag |
suspended | boolean | No | Suspension flag |
heatSensitive | boolean | No | Cold-chain requirement flag |
parcels | integer | No | Number of shipping parcels |
price | float | Yes | Base price (tax-exclusive) |
vatRate | float | Yes | VAT rate as decimal |
currency | string | Yes | ISO 4217 currency code |
supplierId | string (uuid) | Yes | Supplier identifier |
vendorId | string (uuid) | Yes | Vendor identifier |
preparationProfileId | string (uuid) | Yes | Preparation profile |
createdAt | string (ISO 8601) | No | Creation timestamp |
updatedAt | string (ISO 8601) | No | Last update timestamp |
Full JSON Payload Sample
json
{
"header": {
"organizationId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"messageId": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
"webhookId": "c3d4e5f6-a7b8-9012-cdef-123456789012",
"type": "product/updated",
"date": "2024-03-15T14:45:00.000Z"
},
"body": {
"id": "d4e5f6a7-b8c9-0123-defa-234567890123",
"organizationId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"title": "Classic White T-Shirt — Summer Edition",
"description": "100% organic cotton unisex t-shirt, available in multiple sizes.",
"slug": "classic-white-t-shirt",
"status": "ACTIVE",
"scope": "GLOBAL",
"model": "PRODUCT",
"fragile": false,
"suspended": false,
"heatSensitive": false,
"parcels": 1,
"price": 27.50,
"vatRate": 0.20,
"currency": "EUR",
"supplierId": null,
"vendorId": "e5f6a7b8-c9d0-1234-efab-345678901234",
"preparationProfileId": null,
"createdAt": "2024-03-15T10:23:45.000Z",
"updatedAt": "2024-03-15T14:45:00.000Z"
}
}Related Events
product/created— fired when the product is first createdproduct/status_updated— dedicated event for status transitions
Notes
- The payload always contains the full current state of the product, not a diff.
- The
organizationIdis read directly fromdata.organizationId. - Status changes also emit a dedicated
product/status_updatedevent in addition to thisproduct/updatedevent.