How it works
Pabbly Connect workflows start with a Webhook by Pabbly Connect trigger that generates a unique URL. When TryRoki fires an article event it POSTs the JSON payload to that URL. Pabbly captures all 12 fields automatically, making them available as variables for any downstream action step — no coding required.Step-by-step setup
1
Create a new workflow
Log in to pabbly.com/connect and click Create Workflow. Give it a name (e.g. TryRoki → Sheets) and click Create.
2
Set up the Webhook trigger
The workflow opens with two panes: trigger on the left, action on the right. In the trigger pane click Choose App, search for Webhook, and select Webhook by Pabbly Connect.Pabbly generates a unique webhook URL — copy it:
3
Add the URL to TryRoki
In the TryRoki dashboard go to Integrations → Webhooks and click Add webhook. Paste the Pabbly URL into Endpoint URL. Tick On create and/or On update, then save.
4
Capture the test payload
Back in Pabbly, click Capture Webhook Response in the trigger pane. Pabbly starts waiting for an incoming request.In TryRoki, publish or update any article to send the first webhook. Pabbly immediately captures the data and shows all 12 fields:Click Save & Send Test Request to confirm the trigger is working.
5
Add an action step and map fields
In the right (action) pane click Choose App and select your destination. Common choices:
- Google Sheets → Add New Row — map
title,target_keyword,publish_date,imageto spreadsheet columns. - Notion → Create Page — use
titleas the page name, pastecontentinto a text block. - Slack → Send Channel Message — post a notification that includes the article title and keyword.
- HTTP → Make a GET / POST Request — forward the full payload JSON to a custom endpoint or CMS.
{{trigger.title}}, {{trigger.content}}, etc.6
Save and activate the workflow
Click Save at the top of the page. Pabbly automatically activates the workflow — the toggle at the top-right should show On. From now on every TryRoki webhook event runs the workflow in real time.
Tips
- Pabbly receives both
article.createdandarticle.updatedevents at the same URL. Use the Pabbly Filter action to branch on a field value if you need different behaviour for each event type. - The
contentfield is Markdown andcontent_htmlis the rendered HTML — pick the one your destination expects. If you need plain text, use Pabbly’s built-in Text Formatter → Strip HTML step on the HTML field. - Unlike Zapier and Make, Pabbly Connect does not charge per task — all paid plans include unlimited workflow executions.
- You can add multiple action steps to a single workflow — for example, save to Google Sheets and post to Slack in one run.
