Make.com / Integromat Solution
Bypass Make.com’s 40-minute sleep limit. Schedule delays up to 30 days.
Make’s native Sleep module caps execution at 40 minutes and ties up active scenario runs. Delaypi lets you offload multi-day waiting periods to a deterministic edge queue and fire your custom Webhook module precisely when ready.
Native Make.com Sleep Module
- ×Hard limit: Max sleep duration is 40 minutes (2,400 seconds).
- ×Ties up scenario worker execution slots while waiting.
- ×Cannot survive network drops or unexpected scenario restarts.
- ×No native AES-256 encrypted token protection for long waiting periods.
Delaypi + Make.com Webhook
- ✓Schedule delays anywhere from 5 minutes up to 30 days.
- ✓Scenario finishes instantly; second scenario triggers via webhook.
- ✓Automatic exponential retries on 429 or 5xx Make.com webhook responses.
- ✓HMAC-SHA256 signature verification guarantees webhook authenticity.
How to connect Delaypi to Make.com
Step 1: Create a Custom Webhook module in Make.com
In your second scenario (the delayed branch), add a "Custom Webhook" trigger. Copy its unique URL (e.g. `https://hook.eu2.make.com/...`).
Step 2: Add an HTTP "Make a Request" module in your first scenario
Configure the module to POST to `https://api.delaypi.com/v1/dispatch` with your target Make webhook and future timestamp.
URL: https://api.delaypi.com/v1/dispatch
Method: POST
Headers:
Authorization: Bearer dlp_live_your_api_key
Content-Type: application/json
Body:
{
"target_url": "{{make_custom_webhook_url}}",
"run_at": "{{formatDate(addDays(now; 7); "YYYY-MM-DDTHH:mm:ss.000Z")}}",
"payload": {
"lead_id": "{{1.lead_id}}",
"email": "{{1.email}}",
"step": "follow_up_sequence"
}
}Step 3: Receive the delayed execution cleanly
Delaypi handles the 7-day delay in cloud storage and triggers your Make scenario at the exact scheduled minute.