Make (Integromat) custom app

Add human review to Make (formerly Integromat) scenarios with a custom app. Submit tasks, get results, react to Review Completed events.

Make scenariotrigger module
VW moduleSubmit Task
Certified reviewerhuman review
Webhooksigned callback
Make scenarionext module

Install

Install the integration and add it to your Make workspace.

terminal
# Inside the Make Apps Editor
Import app.json → Configure API key → Add modules to scenario
config.json
{
  "name": "verified-workflows",
  "version": "1.0.0",
  "modules": ["submit_task", "get_task", "review_completed"]
}

Submit a task

Add the Submit Task module to any scenario. Pass content, a content type, and an optional webhook URL. The module returns the task id; the result comes back via the Review Completed trigger.

submit_task.sh
# Submit any AI output for human review
curl -X POST https://api.verifiedworkflows.com/v1/tasks \
  -H "Authorization: Bearer vw_live_xxx" \
  -H "Content-Type: application/json" \
  -d '{
    "content": "Body of the generated support reply",
    "content_type": "text",
    "callback_url": "https://your-app.example.com/webhook/vw"
  }'
review.py
from verifiedworkflows import VerifiedWorkflows

client = VerifiedWorkflows(api_key="vw_live_xxx")

task = client.tasks.create(
    content="Body of the generated support reply",
    content_type="text",
    callback_url="https://your-app.example.com/webhook/vw",
)

print(task["id"])  # tsk_live_f8a29
review.js
import { VerifiedWorkflows } from "verifiedworkflows";

const client = new VerifiedWorkflows({ apiKey: "vw_live_xxx" });

const task = await client.tasks.create({
  content: "Body of the generated support reply",
  contentType: "text",
  callbackUrl: "https://your-app.example.com/webhook/vw",
});

console.log(task.id);  // tsk_live_f8a29

Operations

Authentication

In the Make Apps Editor, open the Verified Workflows app and paste your API key. Keys are scoped per workspace. Generate keys from the API dashboard.

Webhook triggers

Review Completed is delivered as a Make custom webhook. The payload is signed with HMAC-SHA256 in the X-VW-Signature header — verify it before trusting the payload.

Is this the official Make app?
Yes. It is published in the Make Apps directory and is maintained alongside the REST API.
Does it work on the free Make plan?
Yes. There are no operation-count minimums on the Verified Workflows side. Make's own plan limits apply.
How do I import the app?
Download app.json from the integrations repo, then drag it onto the Make Apps Editor. The modules appear under "Verified Workflows".