52. Zapier/Make Integration Deep Dive | Form Forge - Build Forms with AI in Seconds
Download Log in

52. Zapier/Make Integration Deep Dive

Developer Guide

Detailed setup for connecting Form Forge to Zapier and Make (Integromat).

Zapier Setup

  1. Create a new Zap with a Webhooks by Zapier trigger (select “Catch Hook”)
  2. Zapier generates a URL: https://hooks.zapier.com/hooks/catch/123456/abcdef/
  3. Paste this URL into the Form Forge “Webhook URL” field
  4. Submit a test form
  5. In Zapier, click “Test Trigger” to capture the data
  6. Map fields in your action step:
text
Name:    {{fields__field_1__value}}
Email:   {{fields__field_2__value}}
Message: {{fields__field_3__value}}

Make (Integromat) Setup

  1. Create a new scenario with a Custom Webhook module
  2. Copy the generated URL (e.g., https://hook.eu1.make.com/abcdef123)
  3. Paste into Form Forge settings and submit a test form
  4. Access fields: fields.field_1.value

n8n Setup

  1. Create a Webhook node (set method to POST)
  2. Copy the production URL
  3. Access fields: {{ $json.fields.field_1.value }}
json
{
  "name": "{{ $json.fields.field_1.value }}",
  "email": "{{ $json.fields.field_2.value }}",
  "form": "{{ $json.form_title }}",
  "submitted_at": "{{ $json.timestamp }}"
}

Verifying Webhook Payloads

Add HMAC authentication on the sender side and verify on the receiver:

php
// Sender (Form Forge site)
add_filter( 'formforge_webhook_payload', function( $payload ) {
    $secret = 'your-shared-secret';
    $payload['signature'] = hash_hmac( 'sha256', wp_json_encode( $payload['fields'] ), $secret );
    return $payload;
} );
php
// Receiver (your custom endpoint)
$body = file_get_contents( 'php://input' );
$data = json_decode( $body, true );
$expected = hash_hmac( 'sha256', json_encode( $data['fields'] ), 'your-shared-secret' );
if ( ! hash_equals( $expected, $data['signature'] ) ) {
    http_response_code( 401 );
    die( 'Invalid signature' );
}

Forge AI Assistant Online

Hi! I'm the Form Forge AI assistant. Ask me anything about the plugin — setup, features, troubleshooting, or development.

Just now
Powered by Forge AI · Browse docs