Integration Recipes

Get Started

Integration Recipes

Step-by-step walkthroughs for connecting Product Roadmap Pro to popular automation tools.

Time to read: 8 minutes


Before You Start

Make sure webhooks are enabled:

  1. Go to Roadmap > Settings > Pro
  2. Set Enable Webhooks to Yes
  3. Save changes

Recipe 1: Zapier — New Vote Notification to Email

Send an email every time someone votes on a roadmap item.

  1. Log in to Zapier
  2. Click Create Zap
  3. Search for Webhooks by Zapier as your trigger app
  4. Select Catch Hook as the trigger event
  5. Copy the generated webhook URL
  6. Register the webhook on your roadmap site using the REST API
  7. Vote on any item to test
  8. Add an Email action and map the fields
  9. Publish the Zap

Recipe 2: Zapier — Status Change to Trello Card

Create a Trello card when a roadmap item moves to In Progress.

  1. Create a new Zap with Webhooks by Zapier Catch Hook
  2. Register the webhook with events status_changed
  3. Add a Filter step for data_new_status equals in-progress
  4. Add Trello Create Card as the action

Recipe 3: Make — Suggestion to Google Sheet

Log every new suggestion in a Google Sheet for tracking.

  1. Create a new scenario in Make
  2. Add a Custom webhook module
  3. Register the webhook with events suggestion_submitted and guest_suggestion_submitted
  4. Submit a test suggestion
  5. Add Google Sheets Add a Row module
  6. Map columns and activate

Recipe 4: Slack — Formatted Notification

Post a formatted message to a Slack channel when items change status. Use Zapier or Make as middleware to transform the roadmap payload into Slack format.


Recipe 5: Custom Dashboard

Build a real-time dashboard that updates when votes come in. See the full code example in the Real-Time Dashboard Server Gist.


Debugging Failed Deliveries

Response CodeMeaningFix
200-299SuccessNo action needed
401/403Auth failedCheck receiver auth
404URL not foundVerify webhook URL
500Server errorCheck receiver logs
TimeoutToo slowRespond within 10s
Last updated: March 4, 2026