Skip to content

catalog/updated

Overview

PropertyValue
Webhook typecatalog/updated
Kafka topiccatalog.updated
DirectionPlatform → Your endpoint

Description

Fired when any field on an existing catalog is updated. This includes metadata changes (title, description) and status transitions (e.g., activating a catalog or archiving it).

Trigger Conditions

  • A user or integration updates catalog fields via the API
  • The catalog status changes (e.g., DRAFTACTIVE, ACTIVEDISABLED)

Message Envelope

json
{
  "header": {
    "organizationId": "org_xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
    "messageId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
    "webhookId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
    "type": "catalog/updated",
    "date": "2024-03-10T14:00:00.000Z"
  },
  "body": { ... }
}

Body — Property Table

Catalog Object

FieldTypeNullableDescription
idstring (uuid)NoUnique catalog identifier
organizationIdstring (uuid)NoOrganization that owns this catalog
namestringNoInternal unique name (immutable)
titlestringNoHuman-readable display name
descriptionstringYesOptional description
statusenumNoCatalog status: DRAFT, ACTIVE, DISABLED, ARCHIVED
createdAtstring (ISO 8601)NoOriginal creation timestamp
updatedAtstring (ISO 8601)NoTimestamp of this update

Full JSON Payload Sample

json
{
  "header": {
    "organizationId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "messageId": "b9c0d1e2-f3a4-5678-bcde-901234567890",
    "webhookId": "c3d4e5f6-a7b8-9012-cdef-123456789012",
    "type": "catalog/updated",
    "date": "2024-03-10T14:00:00.000Z"
  },
  "body": {
    "id": "a8b9c0d1-e2f3-4567-abcd-890123456789",
    "organizationId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "name": "main-catalog-fr",
    "title": "Catalogue Principal France",
    "description": "Main product catalog for the French market — Spring/Summer 2024",
    "status": "ACTIVE",
    "createdAt": "2024-02-01T08:00:00.000Z",
    "updatedAt": "2024-03-10T14:00:00.000Z"
  }
}

Notes

  • The full current state is always included in the payload.
  • Status values:
    • DRAFT — catalog is being configured, not yet published
    • ACTIVE — catalog is live and accessible
    • DISABLED — catalog is temporarily hidden/suspended
    • ARCHIVED — catalog is permanently decommissioned
  • Monitoring status transitions is particularly important for storefronts that display products based on catalog membership.

HappyColis API Documentation