I’m receiving real-time webhook requests (from Klaviyo flows) into Make. I need to send WhatsApp messages only during specific business hours (for example: 7:00–21:00, with variations on weekends).
Since Make doesn’t allow complex business-hour filters directly inside filters, I originally tried to solve this by using:
• Scheduled scenario: “At regular intervals” (1 min minimum)
• Sequential Processing OFF (to allow parallel processing)
However, even with Sequential Processing OFF, the scheduler only processes 1 bundle per interval, which creates a growing queue during busy hours.
Eventually, I face growing backlog and risk losing timely message delivery.
I want to:
• Trigger real-time execution for every webhook bundle (no delay)
• Apply business-hour filtering logic directly inside the scenario
• Avoid queue build-up and avoid sending batch messages at 7:00am
• Keep system stable at high volume (15+ flows sending webhooks)
My question:
• Can I apply business-hour logic inside the scenario using variables or functions that support more complex time checks?
• What is the recommended architecture for real-time webhook flows that need controlled sending windows?