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
| Trigger | Event | Fires on |
|---|---|---|
| New Review | review.created | A new App Store / Google Play review (filter by store, app, storefront, star band). |
| Rating Dropped | rating.dropped | The 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
- Add Rustle as the trigger app and pick New Review or Rating Dropped.
- Connect your account: paste an API token (
rsk_…) from the console (app.rustle.cloud → Integrations). The base URL ishttps://app.rustle.cloud. - 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.
- Test: Zapier pulls a sample event so you can map fields before going live.
- 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.