Make is a visual platform that lets you design, build, and automate anything – from simple tasks to complex workflows – in minutes. With Make, you can send information between gotoHuman and thousands of apps. It’s fast and easy to use, visually intuitive, and requires zero coding expertise.
Build powerful workflows and leverage gotoHuman to review AI-generated content, approve critical workflow steps, or provide additional input.
Walkthrough
Overview
Our Make app provides two main modules
- A module to send a request for human review. This will show a new request in your or your team's inbox at gotoHuman:
- A trigger module to listen to the review responses. This will be triggered as soon as a review is submitted:
Create a review form
In gotoHuman, create a new form for your human reviews and tailor it to your use case.
Pick dynamic form components to inject data with every request for review, or add components to collect reviewer's input and decisions.
When creating or editing your form, don't forget to save it!
At the bottom of the form editor you will find the information relevant for your request:
API key
The API key you need for setting up your connection in Make when you add a gotoHuman module.
Form data to send
Copy the JSON data shown to create the right data structure for your specific form.
Send a request from your scenario
In Make, let's first prepare the request you'll send to gotoHuman. Add a "JSON > Create JSON" and a "JSON > Parse JSON" module:
Create JSON
Add a new data structure, click generate for the specification.
Here you select JSON as content type and for the sample data you paste the entire JSON body you see in the gotoHuman form editor.
You need to rename metaIsOptional
and add any additional attributes that you want to receive back in the webhook. Remove or ignore meta
entirely if you don't need meta data.
Generate it and enter or map your form ID and the actual values you want to send with your request
Parse JSON
For this module you simply select the same data structure you created before and map the JSON string from the previous "Create JSON" module
Finally, add the action Create a Review Request of our app to your scenario (search "gotoHuman").
When creating a connection, enter the API key found in your form's sample request (s.above)
Now map your formId
, the fields
and optionally your meta
data if you have any, from the "Parse JSON" module.
Handle the human response
To handle the response of the human review you will create another scenario and listen to the webhook that is triggered when a review is submitted.
Add the gotoHuman > Watch the Review Response trigger to the second scenario of your workflow that defines how your automation continues after the human review response.
Create a new webhook and copy the URL/address:
Paste this into your gotoHuman form in the field Webhook for submissions
Again, don't forget to save your form!
To handle the response, you'll want to point to the Response Values
collection and get()
the nested field value of your choice: get([Response Values]; [Field ID].value)
Run your scenario
When you run your scenario and a review request is sent to gotoHuman, you'll find it in your gotoHuman inbox.
When you submit a review, the webhook trigger in the second scenario will be called and your Make workflow continues.