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.
Overview
To use gotoHuman in your Make automations you'll need to work with these two main modules of our Make app:
1) A module to send a request for human review. You will use this anywhere in your scenario(s) where you used AI to generate some content or need human approval before a critical action. Running this step will show a new request in your inbox at gotoHuman:
2) A trigger module to listen to the review responses. You will have to create a separate scenario that starts with this module. It will be triggered as soon as a review is submitted:
Here is a step-by-step guide:
1) Create a review form
In gotoHuman, create a new form for your human reviews and tailor it to your use case.
Add fields to capture data to be reviewed (text, images, markdown, links,...) and to collect user input (buttons, checkboxes, text inputs,...).
In this example we add an imageGrid and a text component with the IDs ai_image
and ai_text
because we want to review an AI-generated instagram post with text and an image. We might also add a buttonSelect to allow the reviewing user to approve or reject the suggested post.
When creating or editing your form, don't forget to save it!
At the bottom of the form editor you will find your API key. Copy it so you can enter it in Make, s.below.
2) Send a request from your scenario
Add request module
In Make, add the action module Create a Review Request of our app (search "gotoHuman") to your scenario where you want to include human reviews.
Create connection
When adding the module for the first time, it will ask you to create a new connection. Enter the API key that you just copied above.
Select review form
Now select the review form you just created from the list:
When changing your review form at any time (e.g. add a field), you need to refresh the fields in the module
Enter values for review
It will automatically find the fields you added to your form. Go ahead and enter or map the values for your human review:
Enter meta data (optional)
You can optionally pass additional key-value pairs to the review that you will receive back in the response (s.below). This is useful if you have e.g. a document or conversation ID that does not need to be shown as part of the review, but you need it again after the review is completed to continue your workflow.
Assign users
Select whether you want everyone on your account to be able to complete the review or you want to assign only selected users.
3) Handle the human response
Add response module
To handle the response of the human review, create a new scenario and add the gotoHuman > Watch the Review Response trigger module.
This way the scenario will be triggered whenever a review is submitted.
Create webhook
You will be asked to create a new webhook. Copy the URL/address:
Copy webhook
Paste this into your gotoHuman form in the field Webhook for submissions
Again, don't forget to save your form!
Handle review response
To handle the response, you'll want to submit a test review and run your scenario once. Then Make sees the fields included in the Response Values
and you can easily select it:
Alternatively, you can point to the Response Values
collection and get()
the nested field value of your choice: get([Response Values]; yourFormFieldId.value)
:
4) 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.