Clipform

n8n

Trigger an n8n workflow whenever a Clipform form is completed.

n8n is open-source workflow automation you can run on n8n Cloud or self-host. Start a workflow every time someone completes your Clipform - the same way on Cloud and self-hosted.

The Clipform Trigger community node gives you a one-click "On form response" trigger, authenticated with a Clipform API key.

1. Install the node

In n8n, go to Settings -> Community nodes -> Install and enter @clipform/n8n-nodes-clipform (see n8n's community nodes guide).

2. Add your API key

  1. In Clipform, open Settings → API keys and create a key - it is shown once, so copy it then (full guide: API keys).
  2. In n8n, add a new Clipform API credential and paste the key. The credential's Test button calls GET /v1/me to confirm the key works.

3. Add the trigger

Add the Clipform Trigger node and activate your workflow - it subscribes to your workspace's form completions (and unsubscribes when you deactivate it). It fires for every completed form in the workspace; to react to one form, add an n8n IF or Filter node on form_id or form_tags.

Or use a generic webhook

If you would rather not install a community node, n8n's built-in Webhook node works too:

  1. Add a Webhook node (method POST) as the trigger and copy its Production URL.
  2. In Clipform, open your form's Integrations -> Webhook, paste the URL, and click Save.
  3. In n8n click Listen for test event, then in Clipform click Send test so n8n learns your fields.

What gets sent

Each completion sends a form.completed event. The full shape is documented in the Webhook Payload Format - it includes the form ID, response ID, session details, and every answer keyed by node.

On this page