MES Integration
Integrate FabConnect with Manufacturing Execution Systems.
MES Integration Overview
FabConnect can integrate with popular MES systems to provide seamless data flow.
Supported MES Systems
Integration Methods
REST API
FabConnect exposes all data via REST API for polling-based integration.
WebSocket
Real-time event streaming for push-based integration.
Webhooks
Configure webhooks to send events to your MES:
webhooks:
- url: https://mes.yourcompany.com/fabconnect
events:
- equipment.connected
- equipment.disconnected
- alarm.raised
- job.completed
headers:
X-API-Key: your-api-keyData Mapping
Map FabConnect data to your MES schema:
{
"equipment_id": "${equipment.id}",
"lot_id": "${job.lot_id}",
"wafer_id": "${substrate.id}",
"recipe": "${job.recipe}",
"start_time": "${job.started_at}",
"end_time": "${job.completed_at}"
}