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

  1. Open Nimriz on Zapier and click Connect.
  2. When prompted, paste your workspace API key.
  3. 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.

TriggerEvent typeDescription
Link Createdlink.createdA new short link is created in your workspace
Link Updatedlink.updatedA link's destination, slug, expiration, or redirect status changes
Link Takedown Updatedlink.takedown_updatedA link's availability changes due to moderation
Domain Verification Updateddomain.verification_updatedA domain's verification or readiness state changes
Link Clickedlink.clickedA short link is clicked (bot traffic excluded)
QR Code Scannedlink.qr_scannedA QR code is scanned (bot traffic excluded)

Available actions

ActionDescription
Create Short LinkCreates a new short link with optional custom slug, expiration, and redirect status
Update SlugChanges the slug on an existing link
Update DestinationChanges the destination URL on an existing link
Update ExpirationSets, changes, or removes link expiration
Set or Remove PasswordAdds or removes password protection

Available searches

SearchDescription
Find LinkLooks up a link by short URL or domain ID + short code
List Recent LinksReturns recently created links for the workspace
Check Slug AvailabilityChecks whether a slug is available on a domain
Get Link AnalyticsFetches click or QR scan analytics for a link

Example Zap: QR scan to Google Sheets

  1. Trigger: Nimriz > QR Code Scanned.
  2. Action: Google Sheets > Create Spreadsheet Row.
  3. Map data.domain_name, data.short_code, data.country, and data.device_category to sheet columns.

Every QR scan now logs a row with the scan location and device type.

Example Zap: New link to Slack

  1. Trigger: Nimriz > Link Created.
  2. Action: Slack > Send Channel Message.
  3. Use data.short_url and data.destination_host in 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.

Related guides