Developer ResourcesWebsockets
Realtime Examples
Order Tracking
realtimeService.notifyOrderStatusChange(orderId, "ready", {
customerId,
storeId,
agentId,
});Agent Coordination
realtimeService.notifyDeliveryAssigned(orderId, agentId);
realtimeService.notifyAgentLocationUpdate(agentId, {
lat: 27.7172,
lng: 85.3240,
});Stock Alerts
realtimeService.notifyStockUpdate(storeId, productId, stockCount);