Skip to content

product.created

A new product was created in Comal — Camino syncs to the CRM product catalog for cross-channel posting (e.g., TikTok catalog, social feeds).

Senders

  • comal

Receivers

  • camino

Data schema

Each field maps to a type hint. | null indicates an optional field.

json
{
  "productId": "string",
  "storeId": "string",
  "ecosystemOrgId": "string",
  "name": "string",
  "description": "string",
  "priceCents": "number",
  "sku": "string (optional)",
  "images": "Array<{ url: string, alt?: string }>",
  "is_active": "boolean",
  "variants": "array (optional)"
}

Example payload

The following is a synthetic payload that matches the schema. Production payloads are signed with HMAC-SHA256 and delivered to each receiver's registered webhook endpoint.

json
{
  "productId": "example-productId",
  "storeId": "example-storeId",
  "ecosystemOrgId": "example-ecosystemOrgId",
  "name": "example-name",
  "description": "example-description",
  "priceCents": 0,
  "sku": "example-sku",
  "images": "example-images",
  "is_active": true,
  "variants": "example-variants"
}

See also


Generated from ecosystem-sdk/packages/mcp-server/src/registry/events.json. Do not edit by hand.

Red Broom Software Ecosystem