Fillout to Creatio Integration (Webhook + Make.com No-Code Guide)

September 22, 2025

Introduction

This guide explains how to integrate Fillout forms with Creatio CRM to automatically create records such as Leads, Contacts, or Cases.

The integration can be done in two ways:

  1. By directly connecting Fillout with Creatio using a webhook.
  2. By using Make.com to build a more flexible automation workflow.

This documentation is designed for Creatio no-code builders, admins, and citizen developers who want to automate lead creation without writing custom code.


Steps Overview


Who This Guide Is For


What You’ll Achieve


Video Tutorial

Watch this step-by-step video guide to see the entire integration process in action.

If the embed does not load, you can open it directly here: https://youtu.be/iijGEFwFX7E


1. Create a Fillout Form

  1. Sign up or log in to Fillout.
  2. Build your form with all the required fields (Lead Name, Email, Phone, etc.).
  3. Add a hidden text field called EntityName, with default value Lead (or another Creatio object you need).

Step 1

Step 2

2. Get the Webhook URL from Creatio

To connect Creatio directly with Fillout, you need to obtain the webhook URL.
Similarly, if you connect it through Make, you also need the webhook URL to receive Fillout responses.

  1. Go to the Lead section in Creatio.

  2. In the top menu, click Import.

  3. From the dropdown, select Web forms and pages.
    Step 3

  4. A list of web form integration options will open.

  5. Click Get your webhook URL.
    Step 4

  6. Copy the generated Webhook URL — this will be used in both direct Fillout setup and Make.


3. Method 1: Configure Webhook in Fillout

a. Configure the webhook

  1. Go to Integrate in Fillout and Click Webhook.
    Step 5

  2. Paste the Creatio webhook URL.
    Step 6

  3. Test it → when successful, click Finish setup.
    Step 7

b. Publish and share your form

Once tested, publish the form and share the link.

c. Webhook parameters

Toggle the Advanced view switch to configure your webhook:
Step 8

Check if the request is successfully received in Creatio.
Step 10

New Lead added
Step 11


4. Method 2: Use Make.com for Advanced Automation

a. Set up your Make account

  1. Create a Make account at Make.com.
  2. Go to Scenarios → Create a New Scenario.
    Step 12

b. Configure Fillout module

  1. Add your first module: Fillout form → Watch New Responses.

  2. Click the + sign in the center and search for Fillout.

  3. Select Watch New Responses.
    Step 13

  4. Click Create WebhookCreate a connectionSave.
    Step 14 Step 15 Step 16

  5. A pop-up will appear prompting you to grant Make access to your Fillout form account. Click Authorise.
    Step 17

  6. Select your form in the Form ID dropdown → Save.
    Step 18

  7. lick the Save button to save your connection settings with Fillout form.
    Step 19

c. Connect Make with Creatio

  1. Click on the + icon to add another module.
    Step 2

  2. Select HTTP → Make a Request.
    Step 21

Configure the request:

Sample JSON body:

{
  "EntityName": "{{1.answers.`6jAJ`}}",
  "LeadName": "Need for Products /  {{1.answers.vBDM}} {{1.answers.gtAY}}",
  "Email": "{{1.answers.rZAp}}",
  "MobilePhone": "{{1.answers.`8YFi`}}",
  "MeetingDate": "{{1.answers.kdaU}}"
}

d. Field Descriptions


E. Testing the Scenario

  1. In Make, click Run Once.
    Step 23 Step 24

  2. Submit a test entry in your Fillout form.

  3. If successful:

    • The scenario will stop.
    • A ✅ checkmark will appear on both Fillout and Creatio modules.
    • You can now activate your scenario.
      Step 25

Verify Results in Creatio

Check if the request is successfully received in Creatio.
Step 26

A new Lead record will appear automatically.
Step 27


F. Activate the Scenario

  1. Go back to your scenario diagram in Make.
  2. Toggle the scenario switch to On.
    From now on, every new Fillout form response will be automatically sent to Creatio.
    Step 28

Conclusion

By integrating Fillout with Creatio CRM, you can fully automate the flow of data from web forms into your CRM.

Depending on your needs, you can:

Benefits of this integration:


Next Steps

To enhance your integration further, consider:

  1. Adding data validation rules in Make.
  2. Setting up error handling for failed submissions.
  3. Creating custom fields in Creatio for additional form data.
  4. Implementing lead scoring based on form responses.
  5. Setting up automated follow-up processes in Creatio.

FAQ: Fillout → Creatio Integration

Can I create objects other than Leads?

Yes. Set the hidden EntityName field (e.g. Contact, Case). Ensure the webhook body includes columns valid for that object.

How do I prevent duplicate Leads?

Use Make.com: first call Creatio OData/REST (Find by Email), branch logic: update if found, create if not.

Can I send attachments from Fillout to Creatio?

Direct webhook cannot store binaries. Use Make.com to download the file URL then upload via Creatio file API.

Is authentication required for the Creatio webhook?

Creatio’s generated form/webhook endpoint is public for submission. For stricter security, proxy through Make or add a verification token field.

How do I map multi-select fields?

Loop (Iterator) in Make.com, transform values to Creatio lookup IDs, then aggregate into the request body if the target field supports multiple values.

Why are some form submissions not appearing?

Check: (1) Scenario activated, (2) Webhook URL unchanged, (3) Required columns exist in Creatio, (4) JSON keys match column codes.

Tags:

creatio
fillout
integration
webhook
make.com
automation