Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Zapier

Early access. The Rustle Zapier app isn’t on the public Zapier marketplace yet. Request access from rustle.cloud/integrations/zapier. The triggers and behaviour below are what ship.

Zapier lets you turn Rustle events into actions in 7,000+ apps (post to Slack, add a row to Google Sheets, open a Linear issue) with no endpoint to host. Under the hood the Zapier app just calls the REST Hook API, so anything you can do here you can also do directly.

Triggers

TriggerEventFires on
New Reviewreview.createdA new App Store / Google Play review (filter by store, app, storefront, star band).
Rating Droppedrating.droppedThe app’s aggregate rating crosses a threshold or falls by a delta.

Both deliver the same normalized payload; your Zap never branches on whether the review came from Apple or Google.

Setting up a Zap

  1. Add Rustle as the trigger app and pick New Review or Rating Dropped.
  2. Connect your account: paste an API token (rsk_…) from the console (app.rustle.cloud → Integrations). The base URL is https://app.rustle.cloud.
  3. Configure the trigger: choose the store, app, storefront, and filters (star band for reviews; threshold/delta for ratings). These map directly to the filter options.
  4. Test: Zapier pulls a sample event so you can map fields before going live.
  5. Add an action (Slack, Sheets, Discord, Linear, whatever you like) and map the event fields (rating, body, author, app_version, …) into it.

Zapier dedupes triggers on the event’s id, which Rustle aligns with event_id, so a rare redelivery won’t double-run your Zap.

Recipe ideas

  • New 1★ review → message in Slack #support
  • Rating falls below 4.5 → email the founder / page via PagerDuty
  • Review mentions “crash” or “refund” → new Linear issue
  • Any new review → row in Google Sheets

Doing it without Zapier

The Zapier app is a thin wrapper over the API. “Turn on a trigger” is POST /api/v1/hooks; “turn it off” is DELETE /api/v1/hooks/{id}; the “test” step is GET /api/v1/sample. Make and n8n use the same API; guides coming soon.