Telegram
Telegram alert for tomorrow's deadlines
Daily-driver alert lane for partners who use Telegram. 1-day reminder bands fire to a private group chat with the partner team.
8 min setup Trigger:
deadline.due_soon mediumworks with Direct webhookworks with Zapierworks with Make.com
Setup steps
- Create a Telegram bot via BotFather. Get the bot token.
- Get the chat_id of your private partner group (send a message in the group, then call getUpdates).
- In Make / Zapier: webhook trigger, then 'Telegram Send Message'. Body: 'Tomorrow: [deadline.title] for [client.name]'.
- In ClientNest365: subscribe a new webhook to deadline.due_soon.
Payload fields you'll use
deadline.titledeadline.due_atclient.name
Where to wire it in ClientNest365
Open your workspace at /app/settings/webhooks. Click + New endpoint. Paste the target URL from your automation platform (Zapier, Make, n8n) or the third-party tool's native webhook URL. Subscribe to the deadline.due_soon event. Save. Your endpoint secret is shown once at creation; copy it now if you plan to verify the HMAC signature on the receiving end.
Verifying the signature
Each webhook POST carries an X-CN-Signature header. The value is sha256=<hmac> where the HMAC is computed over the raw request body using your endpoint secret. Compare with constant-time equality. Reject mismatches.