Verified Workflows on Zapier
Connect Verified Workflows to 5,000+ apps via Zapier. Submit tasks from any trigger, receive results as actions.
5,000+ appstrigger
Submit TaskZapier action
Certified reviewerhuman review
Review CompletedZapier trigger
Any appnext step
Install the app
Open Zapier, search for Verified Workflows, and install the public app. Authenticate with your API key and you're ready to build Zaps.
terminal
# Optional: install the Zapier CLI to develop locally
npm install -g zapier-platform
zapier login
zapier-app.json
{
"name": "verified-workflows",
"version": "1.0.0",
"platformVersion": "15.0.0"
}
Submit a task from a Zap
Add the Submit Task action after any trigger. The action accepts plain text, a content type (text, audio, image, code, translation), and an optional webhook URL.
submit_task.sh
# Underlying API call the Zapier action makes
curl -X POST https://api.verifiedworkflows.com/v1/tasks \
-H "Authorization: Bearer vw_live_xxx" \
-H "Content-Type: application/json" \
-d '{
"content": "{{step1.output}}",
"content_type": "text",
"callback_url": "https://hooks.zapier.com/vw-callback"
}'
review.py
from verifiedworkflows import VerifiedWorkflows
client = VerifiedWorkflows(api_key="vw_live_xxx")
task = client.tasks.create(
content="Body of the new Stripe dispute email",
content_type="text",
callback_url="https://hooks.zapier.com/vw-callback",
)
print(task["id"])
review.js
import { VerifiedWorkflows } from "verifiedworkflows";
const client = new VerifiedWorkflows({ apiKey: "vw_live_xxx" });
const task = await client.tasks.create({
content: "Body of the new Stripe dispute email",
contentType: "text",
callbackUrl: "https://hooks.zapier.com/vw-callback",
});
console.log(task.id);
Triggers & actions
- Submit Task (action) — queue any content for human review.
- Get Task (action) — fetch the status and result of a previously submitted task.
- Review Completed (trigger) — fires when a webhook callback lands, perfect for chaining.
- New Reviewer Match (trigger) — fires when a reviewer is matched to one of your tasks.
Sample Zaps
- Typeform → Verified Workflows → Slack — review every new form submission and post the verdict.
- Stripe dispute → Verified Workflows → Notion DB — triage the support response and log it.
- Webhook → Verified Workflows → Gmail — review a generated email and forward it for sign-off.
Is this the official Zapier app?
Yes. It is published under the Verified Workflows vendor account and is supported alongside the REST API.
Can I use it on a free Zapier plan?
Yes. The app works on any plan that allows premium actions. Webhook triggers use Zapier's built-in webhook URL.
How are webhooks signed?
Every callback carries an
X-VW-Signature HMAC-SHA256 header. Verify it in a Code by Zapier step before trusting the payload.