Notify Slack, Discord, a webhook or your email when your links get clicks, and automate anything.
An integration and automation add-on. It notifies an external service when your links get clicks, so other tools can react (alert your team, log it in a sheet, trigger a Zap…). The click happens in Linsei, not on the destination site, so this is the natural place to fire those alerts.
You choose when to alert and where:
By threshold (recommended): alert every N clicks (for example at 100, 200, 300…). It's the most efficient. On every click: only for low-traffic links, since it adds work to each visit.
A webhook (any URL that accepts a POST), Slack, Discord or an email. You can combine webhook + email.
Alerts are sent non-blocking: Linsei fires the request and continues with the redirect without waiting for the response, so it doesn't add delay to the click.
Go to api.slack.com/apps and create an app (or use an existing one).
Open Incoming Webhooks, enable it and click Add New Webhook to Workspace; choose the channel.
Copy the URL (https://hooks.slack.com/services/…), paste it in Linsei and pick the Slack format.
In your server: Channel settings › Integrations › Webhooks › New webhook.
Copy the webhook URL, paste it in Linsei and pick the Discord format.
To automate (save to Google Sheets, notify a CRM, send to Telegram…), use a generic webhook:
Create a Zap/scenario with the Webhooks › Catch Hook (Zapier) or Webhook (Make/n8n) trigger. You'll get a URL.
Paste it in Linsei with the Generic (JSON) format. Each alert arrives as this JSON, and you use its fields in the next steps:
{
"source": "linsei",
"event": "milestone",
"slug": "promo",
"short_url": "https://yourdomain.com/promo",
"target_url": "https://...",
"title": "...",
"clicks": 100,
"message": "..."
}Fill in the Alert email field and you'll get alerts by email (using Linsei's email settings). To avoid flooding you, email is only sent for threshold alerts, not on every click.
From Add-ons, click Install on "Webhooks & alerts".
In Add-ons › Webhooks & alerts paste the URL, pick the format, set "alert every N clicks" (e.g. 100) and, if you want, an email.
Click Test: Linsei sends a test alert and tells you if it arrived. Done!