Skip to content
AZNI™
Back to Flexeet case study
Reconstructed portfolio demo

See one commerce event become a complete operations signal.

This simulator translates the supplied automation patterns into a fictional workflow: validate an event, synchronize stock, calculate demand signals, and prepare report notifications without touching any real service.

Webhook validationIdempotent inventory syncSales reportingRestock recommendationsMocked notifications

The workflow canvas is ready

Choose a scenario and run it to see validation, inventory changes, reports, restock signals, and mocked notifications.

Sanitized workflow map

A webhook becomes a controlled operations signal.

Webhook

Receive fictional order event

Validate

Schema, SKU, and quantity checks

Idempotency

Ignore duplicate event IDs

Inventory

Apply stock delta safely

Signals

Calculate sales and restock outputs

Fan-out

Preview Sheets, WhatsApp, Telegram

The original automation remains private. This diagram names only the safe evidence path: validation, duplicate protection, inventory mutation, derived signals, and preview-only delivery.

Sample payload

{
  "eventId": "evt_demo_order_1001",
  "eventType": "order.created",
  "occurredAt": "2026-08-03T10:15:00+07:00",
  "orderNumber": "DEMO-1001",
  "channel": "Northstar Web Shop",
  "items": [
    {
      "sku": "NST-TOTE-001",
      "quantity": 2,
      "unitPrice": 189000
    },
    {
      "sku": "NST-MUG-002",
      "quantity": 1,
      "unitPrice": 149000
    }
  ]
}

Fictional identifiers and catalog values only.