Webhooks

iProTraX can push real-time notifications to your external services whenever production events occur. This is ideal for integrating with Slack, Teams, DingTalk, or internal monitoring systems.

Real-time Triggers

Events are sent the moment an operator updates a work order step.

Flexible Payloads

Standard JSON format compatible with most automation platforms.

Supported Events

on_holdURGENT

Triggered when a work order step is marked as HOLD (Production blocker).

on_qnQUALITY

Triggered when a quality issue (QN/DIFA) is reported on a step.

on_donePROGRESS

Triggered when a work order step is completed.

Supported Providers

DingTalk
Feishu
WeCom
Bark
Gotify
Telegram
Slack
Discord
Custom

Available Variables

VariableDescription
{{orderId}}The unique work order ID.
{{step}}Current production step name.
{{status}}Target status (Done, Hold, QN).
{{productName}}Product line or part name.
{{operator}}The user who triggered the update.

Payload Example

{
  "event": "on_hold",
  "data": {
    "orderId": "WO-12345",
    "productName": "Controller Module A",
    "step": "Final Assembly",
    "operator": "John Doe",
    "status": "Hold",
    "timestamp": "2026-01-25T11:20:45Z"
  }
}

Configuration

Enable Webhooks

Go to Settings > Product Line Config and edit the JSON configuration to add one or more destination URLs.