How to send a push notification with Zapier or Make (no code)
You don't need to be a developer to get a buzz on your phone when a form comes in or a row is added. Because a Lert notification is just an HTTP POST, any automation tool that can call a webhook can send one — and Zapier and Make both can. This guide wires a real Zap and a Make scenario end to end, with fields from your trigger mapped straight into the notification. No programming, nothing to install.
The idea in one sentence
Lert gives you a unique URL. Zapier and Make both have a generic "send an HTTP request" step. You put your Lert URL in that step, map some text into it, and every time your trigger fires, your phone gets a push. That's the whole pattern — the rest is just clicking through the editor.
First: copy your Lert URL
Open the Lert app and your unique endpoint is on screen — something like https://lert.dev/p/your-id. Tap Copy. Treat it like a password: anyone who has it can send you a notification, so paste it only into your own Zaps and scenarios, and regenerate it in the app if it ever leaks. This URL is all the authentication you need — there's no API key to create.
In Zapier: a Webhooks by Zapier action
Start a Zap with whatever trigger you like — a new Google Forms response, a new Airtable record, a starred Gmail email. Then add an action step:
- For the action app, choose Webhooks by Zapier and the event POST. (Webhooks is available on paid Zapier plans.)
- In URL, paste your Lert endpoint:
https://lert.dev/p/your-id. - Set Payload Type to JSON.
- Under Data, add a
titlefield and abodyfield. Click into each value and pick fields from your trigger — for a form, that might be the respondent's name as the title and their message as the body. Optionally add atagto label it in your Lert history. - Leave Wrap Request In Array off and Unflatten on the default.
Zapier assembles a request that looks like this behind the scenes:
POST https://lert.dev/p/your-id Content-Type: application/json { "title": "New form response", "body": "Ada Lovelace — Interested in a demo", "tag": "leads" }
Hit Test action. Zapier fires the request, Lert returns {"delivered":1}, and your phone buzzes within a second or two. Turn the Zap on and you're done.
In Make: an HTTP module
Make (formerly Integromat) calls the same thing an HTTP module. Build a scenario with your trigger, then add a module:
- Add HTTP → Make a request as the next module.
- URL: your Lert endpoint,
https://lert.dev/p/your-id. - Method:
POST. - Under Headers, add
Content-Typewith valueapplication/json. - Set Body type to Raw, content type JSON (application/json), and in the request-content box write the JSON, dragging in mapped values from earlier modules where you want dynamic text.
{
"title": "Airtable: new row",
"body": "{{1.Name}} added to Leads",
"tag": "airtable"
}
The {{1.Name}} token is Make's way of dropping a value from module 1 into the text. Run the scenario once to test, confirm your phone buzzes, then schedule it or set it to run instantly.
Even simpler: if you don't need a title, set the body type to plain text. Send Content-Type: text/plain and put your message straight in the body — Lert treats the whole request body as the notification text. Handy when the trigger already gives you one clean sentence to send.
Things worth connecting
- Google Forms → Lert: get pinged the moment someone submits, with their answers on your lock screen.
- Airtable / Google Sheets → Lert: a new row in a "Leads" or "Bugs" table becomes an instant buzz.
- Gmail → Lert: a label or a matching search fires a push, so you notice the emails that actually matter without watching the inbox.
- Stripe / Shopify → Lert: a new payment or order taps you on the shoulder — see the new-sale use case.
Keep an eye on volume
Automations can fire more often than you expect. Lert allows 60 requests per minute per IP and, on the Free plan, 50 notifications a day (Pro is unlimited, 10,000/day fair use). If a Zap or scenario suddenly loops, you'll get a 429 response rather than an endless stream — but it's worth adding a filter step so you only notify on the events you actually care about.
Why Lert for no-code notifications
Most push services want you to create an account, generate an API key, and store credentials inside your automation tool before anything works. Lert needs none of that: paste one URL into a webhook step and you have push notifications. It's the simplest possible bridge between "something happened in one of my apps" and "my phone told me."
FAQ
Do I need to write any code?
No. A Webhooks by Zapier POST action or a Make HTTP module sends the request for you. You point it at your Lert URL and map fields in the visual editor — no scripting required.
Which apps can trigger a Lert notification this way?
Any app Zapier or Make supports as a trigger — Google Forms, Airtable, Gmail, Typeform, Stripe, Shopify, calendars, and thousands more. When the trigger fires, the webhook step POSTs to Lert and your phone buzzes.
Do I need an API key?
No. Your Lert endpoint URL is the authentication — there's no separate key or token to store in Zapier or Make.
How do I put trigger data in the notification text?
Set the webhook payload type to JSON, then map fields from the earlier step into the title and body values. A form respondent's name and message can become the notification's title and body.
No code. One webhook step. A buzz on your phone.
Download Lert, copy your URL, and paste it into a Zapier or Make action.