Zapier
Connect Nimriz to Zapier with instant triggers, link actions, and search steps using the native Zapier app.
Nimriz has a native Zapier app that connects your workspace to thousands of downstream tools using instant triggers, link actions, and search steps.
Prerequisites
- A Nimriz workspace on Professional plan or higher.
- A workspace API key from Dashboard > Settings > Integrations > API access.
- A Zapier account.
Connect Nimriz to Zapier
- Open Nimriz on Zapier and click Connect.
- When prompted, paste your workspace API key.
- Zapier will verify the connection by fetching your recent links.
Available triggers
All triggers are instant (REST Hook). Nimriz delivers events to Zapier in real time, not by polling.
| Trigger | Event type | Description |
|---|---|---|
| Link Created | link.created | A new short link is created in your workspace |
| Link Updated | link.updated | A link's destination, slug, expiration, or redirect status changes |
| Link Takedown Updated | link.takedown_updated | A link's availability changes due to moderation |
| Domain Verification Updated | domain.verification_updated | A domain's verification or readiness state changes |
| Link Clicked | link.clicked | A short link is clicked (bot traffic excluded) |
| QR Code Scanned | link.qr_scanned | A QR code is scanned (bot traffic excluded) |
Available actions
| Action | Description |
|---|---|
| Create Short Link | Creates a new short link with optional custom slug, expiration, and redirect status |
| Update Slug | Changes the slug on an existing link |
| Update Destination | Changes the destination URL on an existing link |
| Update Expiration | Sets, changes, or removes link expiration |
| Set or Remove Password | Adds or removes password protection |
Available searches
| Search | Description |
|---|---|
| Find Link | Looks up a link by short URL or domain ID + short code |
| List Recent Links | Returns recently created links for the workspace |
| Check Slug Availability | Checks whether a slug is available on a domain |
| Get Link Analytics | Fetches click or QR scan analytics for a link |
Example Zap: QR scan to Google Sheets
- Trigger: Nimriz > QR Code Scanned.
- Action: Google Sheets > Create Spreadsheet Row.
- Map
data.domain_name,data.short_code,data.country, anddata.device_categoryto sheet columns.
Every QR scan now logs a row with the scan location and device type.
Example Zap: New link to Slack
- Trigger: Nimriz > Link Created.
- Action: Slack > Send Channel Message.
- Use
data.short_urlanddata.destination_hostin the message body.
Payload format
Trigger payloads follow the standard Nimriz webhook envelope:
{
"id": "evt_uuid",
"type": "link.clicked",
"api_version": "2026-03-30",
"workspace_id": "ws_uuid",
"data": {
"url_id": "url_uuid",
"domain_name": "go.brand.com",
"short_code": "launch",
"touch_type": "short_link_click",
"country": "US",
"device_category": "mobile",
"utm_source": "twitter"
}
}
Use fields inside data in your Zap action steps.