Typeform

Forms integration · 9 node(s) including 1 trigger.

00Overview

Create and manage Typeform forms, list responses and register webhooks

Every field below is exactly what you see in the Flomation editor. Fields marked ● live picker let you choose from a list pulled live from your account — no IDs to look up.

01Connecting Typeform

Add your credentials as a Flomation environment secret, then pick them in each node. The connection fields are:

FieldTypeDetails
Typeform Personal Access TokensecretRequired${secrets.typeform_token}
i
Pick an Environment on your flow (Flow Settings → Environment) so the secret resolves. Secret fields never show the value — they reference ${secrets.your_secret}.

02Form

Create Form

forms/typeform/form_create · Action

Create a new Typeform form with a title and a JSON array of fields.

FieldTypeDetails
TitlestringRequiredMy contact form
Fields (JSON array)string[{"title":"What is your name?","type":"short_text"}]
Settings (JSON object)string{"is_public":true}

Returns: tool_result, form_id, form_url, result, success, error

Delete Form

forms/typeform/form_delete · Action

Delete a Typeform form permanently by its form ID.

FieldTypeDetails
Form IDstringRequiredabc123

Returns: tool_result, form_id, success, error

Get Form

forms/typeform/form_get · Action

Retrieve a single Typeform form definition by its form ID.

FieldTypeDetails
Form IDstringRequiredabc123

Returns: tool_result, form_id, form_url, result, success, error

List Forms

forms/typeform/form_list · Action

List Typeform forms in the account, with optional search and page size.

FieldTypeDetails
Searchstringcontact
Page Sizeinteger10

Returns: tool_result, results, count, total_items, success, error

Update Form

forms/typeform/form_update · Action

Replace a Typeform form definition with a full form JSON object.

FieldTypeDetails
Form IDstringRequiredabc123
Form (JSON object)stringRequired{"title":"Updated title","fields":[...]}

Returns: tool_result, form_id, form_url, result, success, error

03Responses

List Responses

forms/typeform/responses_list · Action

Retrieve submitted responses for a Typeform form, with date and completion filters.

FieldTypeDetails
Form IDstringRequiredabc123
Page Sizeinteger25
Sincestring2026-01-01T00:00:00Z
Untilstring2026-12-31T23:59:59Z
Completedstringtrue or false — choices: Any, Completed only, Incomplete only

Returns: tool_result, responses, count, total_items, success, error

04Webhook

Create Webhook

forms/typeform/webhook_create · Action

Register or update a Typeform webhook that fires on each form submission.

FieldTypeDetails
Form IDstringRequiredabc123
TagstringRequiredflomation
Webhook URLstringRequiredhttps://launch.flomation.app/webhook/…
Signing Secretsecret${secrets.typeform_webhook_secret}

Returns: tool_result, webhook_id, tag, result, success, error

Delete Webhook

forms/typeform/webhook_delete · Action

Delete a Typeform webhook from a form by its tag.

FieldTypeDetails
Form IDstringRequiredabc123
TagstringRequiredflomation

Returns: tool_result, tag, success, error

05Triggers

Typeform Webhook Trigger

trigger/typeform_webhook · Trigger

Triggers a flow when a Typeform form submission webhook is received.

FieldTypeDetails
Webhook Signing SecretsecretRequired${secrets.typeform_webhook_secret}
Form ID Filterstringabc123 (blank = any form)

Returns: tool_result, event_type, event_id, form_id, response_token, submitted_at, answers, body

06Notes & Limitations

Behaviours and constraints worth knowing before you build with these nodes.